Changeset 14

Show
Ignore:
Timestamp:
12/04/06 05:37:25 (2 years ago)
Author:
lindquist
Message:

Fixed Windows Menu missing parentBar member.
Added initial documentation conversion/creation effort. Still much to do, but it's a start...

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/minwin/menu.d

    r11 r14  
    3636        MenuPeer peer; 
    3737        char[] name; 
     38        MenuBar parentBar; 
    3839 
    3940        this(inout MenuBar bar, char[] label, char[] name = "") { 
     
    8889        this(inout MenuBar bar, char[] label, char[] name = "") { 
    8990            this.name = name; 
     91            parentBar = bar; 
    9092            char* cname = toStringz(label); 
    9193            peer = XmCreatePulldownMenu(bar.peer,cname,null,0);