Changeset 92624 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Nov 29, 2021 12:01:38 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 148516
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/UICloudNetworkingStuff.cpp
r92191 r92624 336 336 CStringArray &comNames, 337 337 CStringArray &comIDs, 338 UINotificationCenter *pParent /* = 0 */)338 UINotificationCenter *pParent) 339 339 { 340 340 /* Currently we are interested in Available images only: */ … … 365 365 CStringArray &comNames, 366 366 CStringArray &comIDs, 367 UINotificationCenter *pParent /* = 0 */)367 UINotificationCenter *pParent) 368 368 { 369 369 /* List cloud source boot volumes: */ … … 390 390 CStringArray &comNames, 391 391 CStringArray &comIDs, 392 UINotificationCenter *pParent /* = 0 */)392 UINotificationCenter *pParent) 393 393 { 394 394 /* List cloud instances: */ … … 415 415 CStringArray &comNames, 416 416 CStringArray &comIDs, 417 UINotificationCenter *pParent /* = 0 */)417 UINotificationCenter *pParent) 418 418 { 419 419 /* List cloud source instances: */ … … 440 440 const CVirtualSystemDescription &comDescription, 441 441 CVirtualSystemDescriptionForm &comResult, 442 UINotificationCenter *pParent /* = 0 */)442 UINotificationCenter *pParent) 443 443 { 444 444 /* Prepare export VSD form: */ … … 461 461 const CVirtualSystemDescription &comDescription, 462 462 CVirtualSystemDescriptionForm &comResult, 463 UINotificationCenter *pParent /* = 0 */)463 UINotificationCenter *pParent) 464 464 { 465 465 /* Prepare import VSD form: */ … … 526 526 bool UICloudNetworkingStuff::cloudMachineSettingsForm(const CCloudMachine &comCloudMachine, 527 527 CForm &comResult, 528 UINotificationCenter *pParent /* = 0 */)528 UINotificationCenter *pParent) 529 529 { 530 530 /* Acquire machine name first: */ … … 581 581 bool UICloudNetworkingStuff::applyCloudMachineSettingsForm(const CCloudMachine &comCloudMachine, 582 582 const CForm &comForm, 583 UINotificationCenter *pParent /* = 0 */)583 UINotificationCenter *pParent) 584 584 { 585 585 /* Acquire machine name first: */ -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UICloudNetworkingStuff.h
r92191 r92624 118 118 CStringArray &comNames, 119 119 CStringArray &comIDs, 120 UINotificationCenter *pParent = 0);120 UINotificationCenter *pParent); 121 121 /** Acquires cloud source boot volumes of certain @a comCloudClient, using @a pParent to show messages according to. */ 122 122 SHARED_LIBRARY_STUFF bool listCloudSourceBootVolumes(const CCloudClient &comCloudClient, 123 123 CStringArray &comNames, 124 124 CStringArray &comIDs, 125 UINotificationCenter *pParent = 0);125 UINotificationCenter *pParent); 126 126 /** Acquires cloud instances of certain @a comCloudClient, using @a pParent to show messages according to. */ 127 127 SHARED_LIBRARY_STUFF bool listCloudInstances(const CCloudClient &comCloudClient, 128 128 CStringArray &comNames, 129 129 CStringArray &comIDs, 130 UINotificationCenter *pParent = 0);130 UINotificationCenter *pParent); 131 131 /** Acquires cloud source instances of certain @a comCloudClient, using @a pParent to show messages according to. */ 132 132 SHARED_LIBRARY_STUFF bool listCloudSourceInstances(const CCloudClient &comCloudClient, 133 133 CStringArray &comNames, 134 134 CStringArray &comIDs, 135 UINotificationCenter *pParent = 0);135 UINotificationCenter *pParent); 136 136 137 137 /** Acquires @a comCloudClient export description form as a @a comResult, using @a pParent to show messages according to. */ … … 139 139 const CVirtualSystemDescription &comDescription, 140 140 CVirtualSystemDescriptionForm &comResult, 141 UINotificationCenter *pParent = 0);141 UINotificationCenter *pParent); 142 142 /** Acquires @a comCloudClient import description form as a @a comResult, using @a pParent to show messages according to. */ 143 143 SHARED_LIBRARY_STUFF bool importDescriptionForm(const CCloudClient &comCloudClient, 144 144 const CVirtualSystemDescription &comDescription, 145 145 CVirtualSystemDescriptionForm &comResult, 146 UINotificationCenter *pParent = 0);146 UINotificationCenter *pParent); 147 147 148 148 /** Acquires @a comCloudMachine ID as a @a uResult, using @a pParent to show messages according to. */ … … 163 163 SHARED_LIBRARY_STUFF bool cloudMachineSettingsForm(const CCloudMachine &comCloudMachine, 164 164 CForm &comResult, 165 UINotificationCenter *pParent = 0);165 UINotificationCenter *pParent); 166 166 /** Acquires @a comCloudMachine settings form as a @a comResult, using @a strErrorMessage to store messages to. 167 167 * @note Be aware, this is a blocking function, it will hang for a time of progress being executed. */ … … 173 173 SHARED_LIBRARY_STUFF bool applyCloudMachineSettingsForm(const CCloudMachine &comCloudMachine, 174 174 const CForm &comForm, 175 UINotificationCenter *pParent = 0);175 UINotificationCenter *pParent); 176 176 } 177 177 -
trunk/src/VBox/Frontends/VirtualBox/src/manager/details/UIDetailsElement.cpp
r92397 r92624 666 666 /* Apply form: */ 667 667 CForm comForm = pEditor->form(); 668 applyCloudMachineSettingsForm(comCloudMachine, comForm );668 applyCloudMachineSettingsForm(comCloudMachine, comForm, gpNotificationCenter); 669 669 } 670 670
Note:
See TracChangeset
for help on using the changeset viewer.