Changeset 80887 in vbox
- Timestamp:
- Sep 18, 2019 12:21:55 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 133462
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/VBoxAboutDlg.cpp
r79365 r80887 196 196 AssertPtrReturnVoid(pCloseButton); 197 197 /* Prepare close-button: */ 198 connect(pButtonBox, SIGNAL(rejected()), this, SLOT(reject()));198 connect(pButtonBox, &QDialogButtonBox::rejected, this, &VBoxAboutDlg::reject); 199 199 200 200 /* Add button-box to the main-layout: */ … … 202 202 } 203 203 } 204 -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIActionPoolManager.cpp
r80479 r80887 2913 2913 { 2914 2914 /* Prepare connections: */ 2915 connect(gShortcutPool, SIGNAL(sigSelectorShortcutsReloaded()), this, SLOT(sltApplyShortcuts()));2916 connect(gShortcutPool, SIGNAL(sigMachineShortcutsReloaded()), this, SLOT(sltApplyShortcuts()));2915 connect(gShortcutPool, &UIShortcutPool::sigSelectorShortcutsReloaded, this, &UIActionPoolManager::sltApplyShortcuts); 2916 connect(gShortcutPool, &UIShortcutPool::sigMachineShortcutsReloaded, this, &UIActionPoolManager::sltApplyShortcuts); 2917 2917 2918 2918 /* Call to base-class: */
Note:
See TracChangeset
for help on using the changeset viewer.