Show
Ignore:
Timestamp:
12/04/08 08:50:31 (3 years ago)
Author:
dyh
Message:

ListView?_Scroll typo

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/win32/commctrl.d

    r317 r318  
    49474947} 
    49484948 
    4949 BOOL ListView_Scroll(HWND w, int d, int d) { 
    4950     return cast(BOOL) SendMessage(w, LVM_SCROLL, d, d); 
     4949BOOL ListView_Scroll(HWND w, int dx, int dy) { 
     4950    return cast(BOOL) SendMessage(w, LVM_SCROLL, dx, dy); 
    49514951} 
    49524952 
     
    51015101static if (_WIN32_WINDOWS >= 0x410 && (_WIN32_WINNT >= 0x500 || _WIN32_IE >= 0x500)) { 
    51025102    BOOL ListView_SortItemsEx(HWND w, PFNLVCOMPARE c, LPARAM p) { 
    5103         return SendMessage(w, LVM_SORTITEMSEX, cast(WPARAM) p, c); 
     5103        return SendMessage(w, LVM_SORTITEMSEX, cast(WPARAM) p, cast(LPARAM)c); 
    51045104    } 
    51055105}