Changeset 73337 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Jul 23, 2018 10:05:26 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 123947
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageBasic3.cpp
r73329 r73337 40 40 # include "UIWizardExportAppDefs.h" 41 41 # include "UIWizardExportAppPageBasic3.h" 42 43 /* COM includes: */ 44 # include "CCloudUserProfiles.h" 42 45 43 46 #endif /* !VBOX_WITH_PRECOMPILED_HEADERS */ … … 123 126 { 124 127 /* Acquire Cloud User-profile List: */ 125 CCloudUserProfile ListcomProfiles = m_comCloudUserProfileManager.GetProfilesByProvider(enmType);128 CCloudUserProfiles comProfiles = m_comCloudUserProfileManager.GetProfilesByProvider(enmType); 126 129 /* Skip if we have nothing to populate (file missing?): */ 127 130 if (comProfiles.isNull()) … … 431 434 } 432 435 433 CCloudUserProfile ListUIWizardExportAppPage3::profiles() const436 CCloudUserProfiles UIWizardExportAppPage3::profiles() const 434 437 { 435 438 return m_comCloudUserProfiles; -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageBasic3.h
r73316 r73337 27 27 /* COM includes: */ 28 28 #include "COMEnums.h" 29 #include "CCloudUserProfile List.h"29 #include "CCloudUserProfiles.h" 30 30 #include "CCloudUserProfileManager.h" 31 31 … … 132 132 QString profile() const; 133 133 /** Returns Cloud User-profile object. */ 134 CCloudUserProfile Listprofiles() const;134 CCloudUserProfiles profiles() const; 135 135 136 136 /** Holds the Cloud User-profile Manager reference. */ 137 137 CCloudUserProfileManager m_comCloudUserProfileManager; 138 138 /** Holds the Cloud User-profile object reference. */ 139 CCloudUserProfile Listm_comCloudUserProfiles;139 CCloudUserProfiles m_comCloudUserProfiles; 140 140 141 141 /** Holds the default appliance name. */ … … 197 197 Q_PROPERTY(bool manifestSelected READ isManifestSelected WRITE setManifestSelected); 198 198 Q_PROPERTY(bool includeISOsSelected READ isIncludeISOsSelected WRITE setIncludeISOsSelected); 199 Q_PROPERTY(CCloudUserProfile Listprofiles READ profiles);199 Q_PROPERTY(CCloudUserProfiles profiles READ profiles); 200 200 Q_PROPERTY(QString profile READ profile); 201 201 -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageBasic4.cpp
r73326 r73337 38 38 # include "CAppliance.h" 39 39 # include "CCloudClient.h" 40 # include "CCloudUserProfile List.h"40 # include "CCloudUserProfiles.h" 41 41 # include "CMachine.h" 42 42 … … 58 58 59 59 /* Acquire Cloud User-profiles: */ 60 CCloudUserProfile List comCloudUserProfiles = fieldImp("profiles").value<CCloudUserProfileList>();60 CCloudUserProfiles comCloudUserProfiles = fieldImp("profiles").value<CCloudUserProfiles>(); 61 61 AssertMsgReturnVoid(comCloudUserProfiles.isNotNull(), 62 62 ("Cloud User-profiles object is undefined!")); -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/exportappliance/UIWizardExportAppPageExpert.h
r73317 r73337 46 46 Q_PROPERTY(bool manifestSelected READ isManifestSelected WRITE setManifestSelected); 47 47 Q_PROPERTY(bool includeISOsSelected READ isIncludeISOsSelected WRITE setIncludeISOsSelected); 48 Q_PROPERTY(CCloudUserProfile Listprofiles READ profiles);48 Q_PROPERTY(CCloudUserProfiles profiles READ profiles); 49 49 Q_PROPERTY(QString profile READ profile); 50 50 Q_PROPERTY(ExportAppliancePointer applianceWidget READ applianceWidget);
Note:
See TracChangeset
for help on using the changeset viewer.