Changeset 7467 in vbox
- Timestamp:
- Mar 17, 2008 7:44:00 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 28906
- Location:
- trunk/src/VBox/Frontends/VirtualBox4
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox4/Makefile.kmk
r7447 r7467 392 392 include/QIMessageBox.h \ 393 393 include/QIRichLabel.h \ 394 include/QIAbstractWizard Framework.h \394 include/QIAbstractWizard.h \ 395 395 include/VBoxGlobalSettings.h \ 396 396 include/VBoxUtils.h \ … … 462 462 src/QIMessageBox.cpp \ 463 463 src/QIRichLabel.cpp \ 464 src/QIAbstractWizard Framework.cpp \464 src/QIAbstractWizard.cpp \ 465 465 src/VBoxDefs.cpp \ 466 466 src/VBoxGlobalSettings.cpp \ -
trunk/src/VBox/Frontends/VirtualBox4/include/VBoxMediaComboBox.h
r7447 r7467 34 34 public: 35 35 36 VBoxMediaComboBox (QWidget *aParent, const char *aName, 37 int aType = 0, bool aUseEmptyItem = false); 38 VBoxMediaComboBox (QWidget *aParent); 36 VBoxMediaComboBox (QWidget *aParent, int aType = -1, 37 bool aUseEmptyItem = false); 39 38 ~VBoxMediaComboBox() {} 40 39 -
trunk/src/VBox/Frontends/VirtualBox4/src/VBoxMediaComboBox.cpp
r7447 r7467 29 29 #include <QPixmap> 30 30 31 VBoxMediaComboBox::VBoxMediaComboBox (QWidget *aParent, const char *aName,32 int aType, bool aUseEmptyItem)33 : QComboBox (aParent , aName),31 VBoxMediaComboBox::VBoxMediaComboBox (QWidget *aParent, int aType /* = -1 */, 32 bool aUseEmptyItem /* = false */) 33 : QComboBox (aParent), 34 34 mType (aType), mRequiredId (QUuid()), mUseEmptyItem (aUseEmptyItem) 35 {36 init();37 }38 39 VBoxMediaComboBox::VBoxMediaComboBox (QWidget *aParent)40 : QComboBox (aParent),41 mType (-1), mRequiredId (QUuid()), mUseEmptyItem (false)42 35 { 43 36 init(); -
trunk/src/VBox/Frontends/VirtualBox4/ui/VBoxNewHDWzd.ui
r7447 r7467 931 931 <class>QILabel</class> 932 932 <extends>QLabel</extends> 933 <header>QIAbstractWizard Framework.h</header>933 <header>QIAbstractWizard.h</header> 934 934 </customwidget> 935 935 <customwidget> 936 936 <class>QITextEdit</class> 937 937 <extends>QTextEdit</extends> 938 <header>QIAbstractWizard Framework.h</header>938 <header>QIAbstractWizard.h</header> 939 939 </customwidget> 940 940 </customwidgets> -
trunk/src/VBox/Frontends/VirtualBox4/ui/VBoxNewVMWzd.ui
r7447 r7467 1196 1196 <class>QILabel</class> 1197 1197 <extends>QLabel</extends> 1198 <header>QIAbstractWizard Framework.h</header>1198 <header>QIAbstractWizard.h</header> 1199 1199 </customwidget> 1200 1200 <customwidget> … … 1206 1206 <class>QITextEdit</class> 1207 1207 <extends>QTextEdit</extends> 1208 <header>QIAbstractWizard Framework.h</header>1208 <header>QIAbstractWizard.h</header> 1209 1209 </customwidget> 1210 1210 </customwidgets> -
trunk/src/VBox/Frontends/VirtualBox4/ui/VBoxVMFirstRunWzd.ui
r7447 r7467 832 832 <class>QILabel</class> 833 833 <extends>QLabel</extends> 834 <header>QIAbstractWizard Framework.h</header>834 <header>QIAbstractWizard.h</header> 835 835 </customwidget> 836 836 <customwidget> … … 842 842 <class>QITextEdit</class> 843 843 <extends>QTextEdit</extends> 844 <header>QIAbstractWizard Framework.h</header>844 <header>QIAbstractWizard.h</header> 845 845 </customwidget> 846 846 </customwidgets> -
trunk/src/VBox/Frontends/VirtualBox4/ui/VBoxVMSettingsDlg.ui.h
r7466 r7467 604 604 tr ("When checked, attaches the specified virtual hard disk to the " 605 605 "Slave slot of the Secondary IDE controller.")); 606 cbHDA = new VBoxMediaComboBox (grbHDA, "cbHDA",VBoxDefs::HD);607 cbHDB = new VBoxMediaComboBox (grbHDB, "cbHDB",VBoxDefs::HD);608 cbHDD = new VBoxMediaComboBox (grbHDD, "cbHDD",VBoxDefs::HD);606 cbHDA = new VBoxMediaComboBox (grbHDA, VBoxDefs::HD); 607 cbHDB = new VBoxMediaComboBox (grbHDB, VBoxDefs::HD); 608 cbHDD = new VBoxMediaComboBox (grbHDD, VBoxDefs::HD); 609 609 #warning port me 610 610 // hdaLayout->insertWidget (0, cbHDA); … … 660 660 "virtual machine. Note that the CD/DVD drive is always connected to the " 661 661 "Secondary Master IDE controller of the machine.")); 662 cbISODVD = new VBoxMediaComboBox (bgDVD, "cbISODVD",VBoxDefs::CD);662 cbISODVD = new VBoxMediaComboBox (bgDVD, VBoxDefs::CD); 663 663 #warning port me 664 664 // cdLayout->insertWidget(0, cbISODVD); … … 687 687 tr ("When checked, mounts the specified media to the Floppy drive of the " 688 688 "virtual machine.")); 689 cbISOFloppy = new VBoxMediaComboBox (bgFloppy, "cbISOFloppy",VBoxDefs::FD);689 cbISOFloppy = new VBoxMediaComboBox (bgFloppy, VBoxDefs::FD); 690 690 #warning port me 691 691 // fdLayout->insertWidget(0, cbISOFloppy);
Note:
See TracChangeset
for help on using the changeset viewer.