Changeset 9060 in vbox for trunk/src/VBox/Frontends/VirtualBox4
- Timestamp:
- May 22, 2008 5:30:51 PM (17 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox4
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox4/VirtualBox.qrc
r8466 r9060 34 34 <file alias="os_netware.png">images/os_netware.png</file> 35 35 <file alias="os_openbsd.png">images/os_openbsd.png</file> 36 <file alias="os_opensolaris.png">images/os_opensolaris.png</file> 36 37 <file alias="os_opensuse.png">images/os_opensuse.png</file> 37 38 <file alias="os_os2warp3.png">images/os_os2warp3.png</file> -
trunk/src/VBox/Frontends/VirtualBox4/src/VBoxGlobal.cpp
r9056 r9060 2818 2818 QIcon iconSet; 2819 2819 2820 iconSet.addFile (aNormal, QSize(), 2820 iconSet.addFile (aNormal, QSize(), 2821 2821 QIcon::Normal); 2822 2822 if (aDisabled != NULL) 2823 iconSet.addFile (aDisabled, QSize(), 2823 iconSet.addFile (aDisabled, QSize(), 2824 2824 QIcon::Disabled); 2825 2825 if (aActive != NULL) 2826 iconSet.addFile (aActive, QSize(), 2826 iconSet.addFile (aActive, QSize(), 2827 2827 QIcon::Active); 2828 2828 return iconSet; … … 3553 3553 if (!aResolveSymlinks) 3554 3554 o |= QFileDialog::DontResolveSymlinks; 3555 return QFileDialog::getOpenFileName (aParent, aCaption, aStartWith, 3555 return QFileDialog::getOpenFileName (aParent, aCaption, aStartWith, 3556 3556 aFilters, aSelectedFilter, o); 3557 3557 #endif … … 4111 4111 {"archlinux", ":/os_archlinux.png"}, 4112 4112 {"debian", ":/os_debian.png"}, 4113 {"opensolaris", ":/os_opensolaris.png"}, 4113 4114 {"opensuse", ":/os_opensuse.png"}, 4114 4115 {"fedoracore", ":/os_fedoracore.png"}, … … 4123 4124 {"netware", ":/os_netware.png"}, 4124 4125 {"solaris", ":/os_solaris.png"}, 4125 {"opensolaris", ":/os_solaris.png"},4126 4126 {"l4", ":/os_l4.png"}, 4127 4127 }; … … 4408 4408 { 4409 4409 /* We provide dynamic tooltips for the usb devices */ 4410 if (aEvent->type() == QEvent::ToolTip) 4410 if (aEvent->type() == QEvent::ToolTip) 4411 4411 { 4412 4412 QHelpEvent *helpEvent = static_cast<QHelpEvent *> (aEvent);
Note:
See TracChangeset
for help on using the changeset viewer.