Changeset 97856 in vbox
- Timestamp:
- Dec 23, 2022 11:23:48 AM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 154943
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/runtime/UIMachineView.cpp
r97849 r97856 814 814 updateMousePointerPixmapScaling(pixmapShape, uXHot, uYHot); 815 815 /// @todo updateMousePointerPixmapScaling(pixmapMask, uXHot, uYHot); 816 #ifdef VBOX_IS_QT6_OR_LATER /* * @todo qt6: this is probably inefficient*/817 m_cursor = QCursor(QBitmap (pixmapShape), QBitmap(pixmapMask), uXHot, uYHot);816 #ifdef VBOX_IS_QT6_OR_LATER /* since qt6 explicit constructor is replaced with QBitmap::fromPixmap static method */ 817 m_cursor = QCursor(QBitmap::fromPixmap(pixmapShape), QBitmap::fromPixmap(pixmapMask), uXHot, uYHot); 818 818 #else 819 819 m_cursor = QCursor(pixmapShape, pixmapMask, uXHot, uYHot);
Note:
See TracChangeset
for help on using the changeset viewer.