Changeset 50

Show
Ignore:
Timestamp:
05/15/07 20:00:53 (2 years ago)
Author:
lindquist
Message:

win32 forgot to remove some debug writefln

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/bughunt/minwin/combo.d

    r49 r50  
    1818    import minwin.logging; 
    1919} 
    20  
    21 debug import std.stdio; 
    2220 
    2321version (MinWin32) { 
     
    5553            auto nfcode = HIWORD(cmd); 
    5654            if (nfcode == CBN_DROPDOWN) { 
    57                 writefln("Combobox drop down"); 
    5855                Rect r; 
    5956                GetWindowRect(peer, &r.native); 
     
    6360            } 
    6461            else if (nfcode == CBN_CLOSEUP) { 
    65                 writefln("Combobox close up"); 
    6662                SetWindowPos(peer, null, 0, 0, oldSz.x, oldSz.y, 
    6763                    SWP_NOMOVE | SWP_NOZORDER | SWP_NOACTIVATE | SWP_NOREPOSITION);