Changeset 85599 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Aug 3, 2020 1:25:05 PM (4 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/globals
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIActionPoolManager.cpp
r85598 r85599 3568 3568 { 3569 3569 /* Prepare connections: */ 3570 connect(gShortcutPool, &UIShortcutPool::sig SelectorShortcutsReloaded, this, &UIActionPoolManager::sltApplyShortcuts);3571 connect(gShortcutPool, &UIShortcutPool::sig MachineShortcutsReloaded, this, &UIActionPoolManager::sltApplyShortcuts);3570 connect(gShortcutPool, &UIShortcutPool::sigManagerShortcutsReloaded, this, &UIActionPoolManager::sltApplyShortcuts); 3571 connect(gShortcutPool, &UIShortcutPool::sigRuntimeShortcutsReloaded, this, &UIActionPoolManager::sltApplyShortcuts); 3572 3572 3573 3573 /* Call to base-class: */ -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIActionPoolRuntime.cpp
r82968 r85599 3469 3469 { 3470 3470 /* Prepare connections: */ 3471 connect(gShortcutPool, &UIShortcutPool::sig SelectorShortcutsReloaded,3471 connect(gShortcutPool, &UIShortcutPool::sigManagerShortcutsReloaded, 3472 3472 this, &UIActionPoolRuntime::sltApplyShortcuts); 3473 connect(gShortcutPool, &UIShortcutPool::sig MachineShortcutsReloaded,3473 connect(gShortcutPool, &UIShortcutPool::sigRuntimeShortcutsReloaded, 3474 3474 this, &UIActionPoolRuntime::sltApplyShortcuts); 3475 3475 connect(gEDataManager, &UIExtraDataManager::sigMenuBarConfigurationChange, -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIShortcutPool.cpp
r82968 r85599 237 237 loadOverridesFor(GUI_Input_SelectorShortcuts); 238 238 239 /* Notify selector shortcuts reloaded: */240 emit sig SelectorShortcutsReloaded();239 /* Notify manager shortcuts reloaded: */ 240 emit sigManagerShortcutsReloaded(); 241 241 } 242 242 … … 254 254 loadOverridesFor(GUI_Input_MachineShortcuts); 255 255 256 /* Notify machine shortcuts reloaded: */257 emit sig MachineShortcutsReloaded();256 /* Notify runtime shortcuts reloaded: */ 257 emit sigRuntimeShortcutsReloaded(); 258 258 } 259 259 -
trunk/src/VBox/Frontends/VirtualBox/src/globals/UIShortcutPool.h
r82968 r85599 119 119 signals: 120 120 121 /** Notifies about Selector UI shortcuts changed. */122 void sig SelectorShortcutsReloaded();121 /** Notifies about Manager UI shortcuts changed. */ 122 void sigManagerShortcutsReloaded(); 123 123 /** Notifies about Runtime UI shortcuts changed. */ 124 void sig MachineShortcutsReloaded();124 void sigRuntimeShortcutsReloaded(); 125 125 126 126 public:
Note:
See TracChangeset
for help on using the changeset viewer.