Ignore:
Timestamp:
Aug 24, 2007, 2:13:12 AM (17 years ago)
Author:
dai_9181
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abdev/ProjectEditor/Complement.cpp

    r24 r302  
    479479    else{
    480480        //スクロールバーを使用しないようにする
    481         i=GetWindowLong(ComplementWndInfo.hList,GWL_STYLE);
     481        i=GetWindowLongPtr(ComplementWndInfo.hList,GWL_STYLE);
    482482        i|=LVS_NOSCROLL;
    483483        i&=~(WS_VSCROLL|WS_HSCROLL);
    484         SetWindowLong(ComplementWndInfo.hList,GWL_STYLE,i);
     484        SetWindowLongPtr(ComplementWndInfo.hList,GWL_STYLE,i);
    485485    }
    486486
     
    726726                hwnd,NULL,hInst,0);
    727727            OldComplementListViewProc=(WNDPROC)GetWindowLongPtr(hListView,GWLP_WNDPROC);
    728             SetWindowLong(hListView,GWLP_WNDPROC,(long)ComplementListViewProc);
     728            SetWindowLongPtr(hListView,GWLP_WNDPROC,(long)ComplementListViewProc);
    729729
    730730            //フォントをセット
Note: See TracChangeset for help on using the changeset viewer.