Changeset 51010 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Apr 9, 2014 11:04:07 AM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 93208
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/Makefile.kmk
r50936 r51010 108 108 $(if $(VBOX_WITH_WDDM),VBOX_WITH_WDDM) \ 109 109 $(if $(VBOX_WITH_CROGL),VBOX_WITH_CROGL) \ 110 $(if $(VBOX_GUI_WITH_HIDPI),VBOX_GUI_WITH_HIDPI) \ 110 111 $(if $(VBOX_GUI_WITH_PIDFILE),VBOX_GUI_WITH_PIDFILE) \ 111 112 $(if $(VBOX_GUI_WITH_KEYS_RESET_HANDLER),VBOX_GUI_WITH_KEYS_RESET_HANDLER) \ -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIIconPool.cpp
r50995 r51010 219 219 220 220 #ifdef Q_WS_MAC 221 # if ndef VBOX_OSE221 # ifdef VBOX_GUI_WITH_HIDPI 222 222 /* Test if HiDPI icons are enabled. Works only with a patched version of Qt 4.x 223 223 * with the changes from https://codereview.qt-project.org/#change,54636 applied. */ … … 233 233 icon.addPixmap(pixmapHiDPI, mode, state); 234 234 } 235 # endif 235 # endif /* VBOX_GUI_WITH_HIDPI */ 236 236 #endif /* Q_WS_MAC */ 237 237 } -
trunk/src/VBox/Frontends/VirtualBox/src/main.cpp
r50990 r51010 414 414 415 415 #ifdef Q_WS_MAC 416 # if ndef VBOX_OSE416 # ifdef VBOX_GUI_WITH_HIDPI 417 417 /* Enable HiDPI icons. For this we require a patched version of Qt 4.x with 418 418 * the changes from https://codereview.qt-project.org/#change,54636 applied. */ 419 419 qApp->setAttribute(Qt::AA_UseHighDpiPixmaps); 420 # endif /* !VBOX_OSE*/420 # endif /* VBOX_GUI_WITH_HIDPI */ 421 421 #endif /* Q_WS_MAC */ 422 422
Note:
See TracChangeset
for help on using the changeset viewer.