Changeset 59412 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- Jan 19, 2016 3:08:30 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UISession.cpp
r59200 r59412 71 71 72 72 #endif /* !VBOX_WITH_PRECOMPILED_HEADERS */ 73 74 /* Qt includes: */ 75 #ifdef Q_WS_WIN 76 # if QT_VERSION >= 0x050000 77 # include <QtWin> 78 # endif /* QT_VERSION >= 0x050000 */ 79 #endif /* Q_WS_WIN */ 73 80 74 81 #ifdef Q_WS_X11 … … 1682 1689 { 1683 1690 /* Set the new cursor: */ 1691 # if QT_VERSION < 0x050000 1684 1692 m_cursor = QCursor(hAlphaCursor); 1693 # else /* QT_VERSION >= 0x050000 */ 1694 m_cursor = QCursor(QtWin::fromHBITMAP(hBitmap, QtWin::HBitmapAlpha), uXHot, uYHot); 1695 # endif /* QT_VERSION >= 0x050000 */ 1685 1696 if (m_alphaCursor) 1686 1697 DestroyIcon(m_alphaCursor);
Note:
See TracChangeset
for help on using the changeset viewer.