- Timestamp:
- Oct 8, 2021 12:27:18 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 147365
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/wizards/newcloudvm
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newcloudvm/UIWizardNewCloudVMPageExpert.cpp
r91499 r91640 199 199 this, &UIWizardNewCloudVMPageExpert::sltHandleProfileButtonClick); 200 200 connect(m_pSourceTabBar, &QTabBar::currentChanged, 201 this, &UIWizardNewCloudVMPageExpert::sltHandleSource Change);201 this, &UIWizardNewCloudVMPageExpert::sltHandleSourceTabBarChange); 202 202 connect(m_pSourceImageList, &QListWidget::currentRowChanged, 203 203 this, &UIWizardNewCloudVMPageExpert::sltHandleSourceImageChange); … … 327 327 } 328 328 329 void UIWizardNewCloudVMPageExpert::sltHandleSource Change()329 void UIWizardNewCloudVMPageExpert::sltHandleSourceTabBarChange() 330 330 { 331 331 updateSource(); -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newcloudvm/UIWizardNewCloudVMPageExpert.h
r91499 r91640 69 69 70 70 /** Handles change in source tab-bar. */ 71 void sltHandleSource Change();71 void sltHandleSourceTabBarChange(); 72 72 73 73 /** Handles change in instance list. */ -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newcloudvm/UIWizardNewCloudVMPageSource.cpp
r91499 r91640 426 426 this, &UIWizardNewCloudVMPageSource::sltHandleProfileButtonClick); 427 427 connect(m_pSourceTabBar, &QTabBar::currentChanged, 428 this, &UIWizardNewCloudVMPageSource::sltHandleSource Change);428 this, &UIWizardNewCloudVMPageSource::sltHandleSourceTabBarChange); 429 429 connect(m_pSourceImageList, &QListWidget::currentRowChanged, 430 430 this, &UIWizardNewCloudVMPageSource::sltHandleSourceImageChange); … … 546 546 } 547 547 548 void UIWizardNewCloudVMPageSource::sltHandleSource Change()548 void UIWizardNewCloudVMPageSource::sltHandleSourceTabBarChange() 549 549 { 550 550 updateSource(); -
trunk/src/VBox/Frontends/VirtualBox/src/wizards/newcloudvm/UIWizardNewCloudVMPageSource.h
r91499 r91640 114 114 115 115 /** Handles change in source tab-bar. */ 116 void sltHandleSource Change();116 void sltHandleSourceTabBarChange(); 117 117 118 118 /** Handles change in image list. */
Note:
See TracChangeset
for help on using the changeset viewer.