Changeset 79567 in vbox
- Timestamp:
- Jul 6, 2019 12:43:14 PM (5 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/wizards
- Files:
-
- 9 edited
-
UIWizardPage.cpp (modified) (1 diff)
-
UIWizardPage.h (modified) (1 diff)
-
clonevd/UIWizardCloneVDPageBasic3.h (modified) (1 diff)
-
clonevd/UIWizardCloneVDPageExpert.h (modified) (1 diff)
-
exportappliance/UIWizardExportAppPageBasic2.h (modified) (1 diff)
-
exportappliance/UIWizardExportAppPageBasic3.h (modified) (1 diff)
-
exportappliance/UIWizardExportAppPageExpert.h (modified) (1 diff)
-
newvm/UIWizardNewVMPageBasic3.h (modified) (1 diff)
-
newvm/UIWizardNewVMPageExpert.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/wizards/UIWizardPage.cpp
r79365 r79567 29 29 *********************************************************************************************************************************/ 30 30 31 UIWizard *UIWizardPageBase::wizardImp() 31 UIWizard *UIWizardPageBase::wizardImp() const 32 32 { 33 33 /* Should be reimplemented in sub-class to enable access to wizard! */ -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/UIWizardPage.h
r76581 r79567 47 47 48 48 /** Returns wizard this page-base belongs to. */ 49 virtual UIWizard *wizardImp() ;49 virtual UIWizard *wizardImp() const; 50 50 51 51 /** Returns wizard page this page-base belongs to. */ -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevd/UIWizardCloneVDPageBasic3.h
r77154 r79567 93 93 94 94 /** Allows to access 'wizard()' from base part. */ 95 UIWizard * wizardImp(){ return wizard(); }95 UIWizard *wizardImp() const { return wizard(); } 96 96 /** Allows to access 'this' from base part. */ 97 97 UIWizardPage* thisImp() { return this; } -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/clonevd/UIWizardCloneVDPageExpert.h
r77154 r79567 53 53 54 54 /** Allows to access 'wizard()' from base part. */ 55 UIWizard * wizardImp(){ return wizard(); }55 UIWizard *wizardImp() const { return wizard(); } 56 56 /** Allows to access 'this' from base part. */ 57 57 UIWizardPage* thisImp() { return this; } -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageBasic2.h
r79566 r79567 270 270 271 271 /** Allows access wizard from base part. */ 272 UIWizard *wizardImp() { return UIWizardPage::wizard(); }272 UIWizard *wizardImp() const { return UIWizardPage::wizard(); } 273 273 /** Allows access wizard-field from base part. */ 274 274 QVariant fieldImp(const QString &strFieldName) const { return UIWizardPage::field(strFieldName); } -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageBasic3.h
r78993 r79567 81 81 82 82 /** Allows access wizard from base part. */ 83 UIWizard * wizardImp(){ return UIWizardPage::wizard(); }83 UIWizard *wizardImp() const { return UIWizardPage::wizard(); } 84 84 /** Allows access page from base part. */ 85 85 UIWizardPage* thisImp() { return this; } -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageExpert.h
r79566 r79567 64 64 65 65 /** Allows access wizard from base part. */ 66 UIWizard * wizardImp(){ return UIWizardPage::wizard(); }66 UIWizard *wizardImp() const { return UIWizardPage::wizard(); } 67 67 /** Allows access page from base part. */ 68 68 UIWizardPage* thisImp() { return this; } -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVMPageBasic3.h
r76581 r79567 104 104 105 105 /* Wrapper to access 'wizard' from base part: */ 106 UIWizard * wizardImp(){ return wizard(); }106 UIWizard *wizardImp() const { return wizard(); } 107 107 /* Wrapper to access 'this' from base part: */ 108 108 UIWizardPage* thisImp() { return this; } -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UIWizardNewVMPageExpert.h
r76581 r79567 52 52 53 53 /* Wrapper to access 'wizard' from base part: */ 54 UIWizard * wizardImp(){ return wizard(); }54 UIWizard *wizardImp() const { return wizard(); } 55 55 /* Wrapper to access 'this' from base part: */ 56 56 UIWizardPage* thisImp() { return this; }
Note:
See TracChangeset
for help on using the changeset viewer.

