VirtualBox

Changeset 85599 in vbox for trunk/src/VBox/Frontends


Ignore:
Timestamp:
Aug 3, 2020 1:25:05 PM (4 years ago)
Author:
vboxsync
Message:

FE/Qt: bugref:9609: A bit of cleanup for shortcut-pool stuff: Rename Selector to Manager, Machine to Runtime for signal names.

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  
    35683568{
    35693569    /* Prepare connections: */
    3570     connect(gShortcutPool, &UIShortcutPool::sigSelectorShortcutsReloaded, this, &UIActionPoolManager::sltApplyShortcuts);
    3571     connect(gShortcutPool, &UIShortcutPool::sigMachineShortcutsReloaded, this, &UIActionPoolManager::sltApplyShortcuts);
     3570    connect(gShortcutPool, &UIShortcutPool::sigManagerShortcutsReloaded, this, &UIActionPoolManager::sltApplyShortcuts);
     3571    connect(gShortcutPool, &UIShortcutPool::sigRuntimeShortcutsReloaded, this, &UIActionPoolManager::sltApplyShortcuts);
    35723572
    35733573    /* Call to base-class: */
  • trunk/src/VBox/Frontends/VirtualBox/src/globals/UIActionPoolRuntime.cpp

    r82968 r85599  
    34693469{
    34703470    /* Prepare connections: */
    3471     connect(gShortcutPool, &UIShortcutPool::sigSelectorShortcutsReloaded,
     3471    connect(gShortcutPool, &UIShortcutPool::sigManagerShortcutsReloaded,
    34723472            this, &UIActionPoolRuntime::sltApplyShortcuts);
    3473     connect(gShortcutPool, &UIShortcutPool::sigMachineShortcutsReloaded,
     3473    connect(gShortcutPool, &UIShortcutPool::sigRuntimeShortcutsReloaded,
    34743474            this, &UIActionPoolRuntime::sltApplyShortcuts);
    34753475    connect(gEDataManager, &UIExtraDataManager::sigMenuBarConfigurationChange,
  • trunk/src/VBox/Frontends/VirtualBox/src/globals/UIShortcutPool.cpp

    r82968 r85599  
    237237    loadOverridesFor(GUI_Input_SelectorShortcuts);
    238238
    239     /* Notify selector shortcuts reloaded: */
    240     emit sigSelectorShortcutsReloaded();
     239    /* Notify manager shortcuts reloaded: */
     240    emit sigManagerShortcutsReloaded();
    241241}
    242242
     
    254254    loadOverridesFor(GUI_Input_MachineShortcuts);
    255255
    256     /* Notify machine shortcuts reloaded: */
    257     emit sigMachineShortcutsReloaded();
     256    /* Notify runtime shortcuts reloaded: */
     257    emit sigRuntimeShortcutsReloaded();
    258258}
    259259
  • trunk/src/VBox/Frontends/VirtualBox/src/globals/UIShortcutPool.h

    r82968 r85599  
    119119signals:
    120120
    121     /** Notifies about Selector UI shortcuts changed. */
    122     void sigSelectorShortcutsReloaded();
     121    /** Notifies about Manager UI shortcuts changed. */
     122    void sigManagerShortcutsReloaded();
    123123    /** Notifies about Runtime UI shortcuts changed. */
    124     void sigMachineShortcutsReloaded();
     124    void sigRuntimeShortcutsReloaded();
    125125
    126126public:
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette