Changeset 8542 for trunk/src/user32/pmwindow.cpp
- Timestamp:
- Jun 2, 2002, 12:08:10 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/pmwindow.cpp
r8541 r8542 1 /* $Id: pmwindow.cpp,v 1.17 4 2002-06-01 17:26:30sandervl Exp $ */1 /* $Id: pmwindow.cpp,v 1.175 2002-06-02 10:07:57 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Managment Code for OS/2 … … 51 51 #include <winscan.h> 52 52 #include <win\dbt.h> 53 #include "dragdrop.h" 53 54 54 55 #define DBG_LOCALLOG DBG_pmwindow … … 796 797 797 798 //does this window accept dropped files? 798 if(! win32wnd->AcceptsDropFiles()) {799 if(!DragDropAccept(win32wnd->getWindowHandle())) { 799 800 rc = (MRFROM2SHORT (DOR_NEVERDROP, 0)); 800 801 break; … … 889 890 890 891 //does this window accept dropped files? 891 if(! win32wnd->AcceptsDropFiles()) {892 if(!DragDropAccept(win32wnd->getWindowHandle())) { 892 893 rc = 0; 893 894 break; … … 943 944 } 944 945 POINT point = {sxDrop, syDrop}; 945 win32wnd->MsgDropFiles(cItems, point, pszFiles, bufsize);946 DragDropFiles(win32wnd->getWindowHandle(), cItems, point, pszFiles, bufsize); 946 947 free(pszFiles); 947 948
Note:
See TracChangeset
for help on using the changeset viewer.