Changeset 51411 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- May 27, 2014 8:23:51 AM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 93949
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 3 edited
- 2 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/VirtualBox1_hidpi.qrc
r51295 r51411 232 232 <file alias="os_os2warp3_hidpi.png">images/hidpi/os_os2warp3_hidpi.png</file> 233 233 <file alias="os_os2warp45_hidpi.png">images/hidpi/os_os2warp45_hidpi.png</file> 234 <file alias="os_os2warp4_hidpi.png">images/hidpi/os_os2warp4_hidpi.png</file> 234 235 </qresource> 235 236 </RCC> -
trunk/src/VBox/Frontends/VirtualBox/VirtualBox2_hidpi.qrc
r51295 r51411 1 1 <RCC> 2 2 <qresource prefix="/"> 3 <file alias="os_os2warp4_hidpi.png">images/hidpi/os_os2warp4_hidpi.png</file>4 3 <file alias="os_other_64_hidpi.png">images/hidpi/os_other_64_hidpi.png</file> 5 4 <file alias="os_other_hidpi.png">images/hidpi/os_other_hidpi.png</file> … … 40 39 <file alias="parallel_port_warning_16px_hidpi.png">images/hidpi/parallel_port_warning_16px_hidpi.png</file> 41 40 <file alias="pin_16px_hidpi.png">images/hidpi/pin_16px_hidpi.png</file> 41 <file alias="preview_empty_228x168px_hidpi.png">images/hidpi/preview_empty_228x168px_hidpi.png</file> 42 <file alias="preview_full_228x168px_hidpi.png">images/hidpi/preview_full_228x168px_hidpi.png</file> 42 43 <file alias="previous_16px_hidpi.png">images/hidpi/previous_16px_hidpi.png</file> 43 44 <file alias="proxy_16px_hidpi.png">images/hidpi/proxy_16px_hidpi.png</file> -
trunk/src/VBox/Frontends/VirtualBox/src/selector/graphics/details/UIGMachinePreview.cpp
r51401 r51411 29 29 #include "UIExtraDataDefs.h" 30 30 #include "UIImageTools.h" 31 #include "UIIconPool.h" 31 32 #include "VBoxGlobal.h" 32 33 … … 64 65 65 66 /* Create bg images: */ 66 m_pbgEmptyImage = new QPixmap( ":/preview_empty_228x168px.png");67 m_pbgFullImage = new QPixmap( ":/preview_full_228x168px.png");67 m_pbgEmptyImage = new QPixmap(UIIconPool::pixmap(":/preview_empty_228x168px.png")); 68 m_pbgFullImage = new QPixmap(UIIconPool::pixmap(":/preview_full_228x168px.png")); 68 69 69 70 /* Create the context menu: */
Note:
See TracChangeset
for help on using the changeset viewer.