Changeset 3662 for trunk/src/user32/clipboard.cpp
- Timestamp:
- Jun 7, 2000, 4:51:33 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/user32/clipboard.cpp
r3462 r3662 1 /* $Id: clipboard.cpp,v 1. 7 2000-04-29 18:28:34sandervl Exp $ */1 /* $Id: clipboard.cpp,v 1.8 2000-06-07 14:51:25 sandervl Exp $ */ 2 2 3 3 /* … … 40 40 } 41 41 dprintf(("USER32: ChangeClipboardChain\n")); 42 return O32_ChangeClipboardChain(wndRemove->getOS2 FrameWindowHandle(),43 wndNext->getOS2 FrameWindowHandle());42 return O32_ChangeClipboardChain(wndRemove->getOS2WindowHandle(), 43 wndNext->getOS2WindowHandle()); 44 44 } 45 45 //****************************************************************************** … … 108 108 hwndOwner = O32_GetClipboardOwner(); 109 109 110 window = Win32BaseWindow::GetWindowFromOS2 FrameHandle(hwndOwner);110 window = Win32BaseWindow::GetWindowFromOS2Handle(hwndOwner); 111 111 if(!window) { 112 112 //an OS/2 window probably owns the clipboard, we pretend nobody owns it … … 125 125 hwndViewer = O32_GetClipboardViewer(); 126 126 127 window = Win32BaseWindow::GetWindowFromOS2 FrameHandle(hwndViewer);127 window = Win32BaseWindow::GetWindowFromOS2Handle(hwndViewer); 128 128 if(!window) { 129 129 //probably an OS/2 window, we pretend it's nobody … … 142 142 hwnd = O32_GetOpenClipboardWindow(); 143 143 144 window = Win32BaseWindow::GetWindowFromOS2 FrameHandle(hwnd);144 window = Win32BaseWindow::GetWindowFromOS2Handle(hwnd); 145 145 if(!window) { 146 146 //probably an OS/2 window, we pretend it's nobody … … 176 176 } 177 177 dprintf(("USER32: OpenClipboard\n")); 178 return O32_OpenClipboard(window->getOS2 FrameWindowHandle());178 return O32_OpenClipboard(window->getOS2WindowHandle()); 179 179 } 180 180 //****************************************************************************** … … 219 219 } 220 220 dprintf(("USER32: SetClipboardViewer\n")); 221 hwndOld = O32_SetClipboardViewer(wndnew->getOS2 FrameWindowHandle());222 223 wndold = Win32BaseWindow::GetWindowFromOS2 FrameHandle(hwndOld);221 hwndOld = O32_SetClipboardViewer(wndnew->getOS2WindowHandle()); 222 223 wndold = Win32BaseWindow::GetWindowFromOS2Handle(hwndOld); 224 224 if(!wndold) { 225 225 //probably an OS/2 window, so pretend it's nobody
Note:
See TracChangeset
for help on using the changeset viewer.