Changeset 55810 in vbox for trunk/src/VBox/Frontends/VBoxSDL/Framebuffer.cpp
- Timestamp:
- May 11, 2015 8:27:08 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxSDL/Framebuffer.cpp
r55401 r55810 387 387 * @param winId Handle of associated window. 388 388 */ 389 STDMETHODIMP VBoxSDLFB::COMGETTER(WinId)( int64_t*winId)389 STDMETHODIMP VBoxSDLFB::COMGETTER(WinId)(LONG64 *winId) 390 390 { 391 391 if (!winId) 392 392 return E_POINTER; 393 #ifdef RT_OS_DARWIN 394 if (mWinId == NULL) /* (In case it failed the first time.) */ 395 mWinId = (intptr_t)VBoxSDLGetDarwinWindowId(); 396 #endif 393 397 *winId = mWinId; 394 398 return S_OK; … … 920 924 if (SDL_GetWMInfo(&info)) 921 925 mWinId = (LONG64) info.info.x11.wmwindow; 926 # elif defined(RT_OS_DARWIN) 927 mWinId = (intptr_t)VBoxSDLGetDarwinWindowId(); 922 928 # else 923 929 /* XXX ignore this for other architectures */
Note:
See TracChangeset
for help on using the changeset viewer.