Changeset 38372 in vbox
- Timestamp:
- Aug 9, 2011 9:52:55 AM (13 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox
- Files:
-
- 2 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/Makefile.kmk
r38355 r38372 354 354 src/widgets/VBoxOSTypeSelectorWidget.h \ 355 355 src/widgets/VBoxWarningPane.h \ 356 src/selector/UIActionPool Offline.h \356 src/selector/UIActionPoolSelector.h \ 357 357 src/selector/UIVMDesktop.h \ 358 358 src/selector/UIVMListView.h \ … … 399 399 src/globals/UIActionPool.cpp \ 400 400 src/extensions/QISplitter.cpp \ 401 src/selector/UIActionPoolOffline.cpp \402 401 src/selector/UIVMDesktop.cpp \ 403 402 src/settings/UISettingsDialogSpecific.cpp \ … … 527 526 src/widgets/VBoxOSTypeSelectorWidget.cpp \ 528 527 src/widgets/VBoxWarningPane.cpp \ 529 src/selector/UIActionPool Offline.cpp \528 src/selector/UIActionPoolSelector.cpp \ 530 529 src/selector/UISelectorShortcuts.cpp \ 531 530 src/selector/UIVMDesktop.cpp \ -
trunk/src/VBox/Frontends/VirtualBox/src/selector/UIActionPoolSelector.cpp
r38355 r38372 3 3 * 4 4 * VBox frontends: Qt GUI ("VirtualBox"): 5 * UIActionPool Offlineclass implementation5 * UIActionPoolSelector class implementation 6 6 */ 7 7 … … 19 19 20 20 /* Local includes: */ 21 #include "UIActionPool Offline.h"21 #include "UIActionPoolSelector.h" 22 22 23 23 /* static */ 24 void UIActionPool Offline::create()24 void UIActionPoolSelector::create() 25 25 { 26 26 /* Check that instance do NOT exists: */ … … 29 29 30 30 /* Create instance: */ 31 UIActionPool Offline *pPool = new UIActionPoolOffline;31 UIActionPoolSelector *pPool = new UIActionPoolSelector; 32 32 /* Prepare instance: */ 33 33 pPool->prepare(); … … 35 35 36 36 /* static */ 37 void UIActionPool Offline::destroy()37 void UIActionPoolSelector::destroy() 38 38 { 39 39 /* Check that instance exists: */ … … 47 47 } 48 48 49 void UIActionPool Offline::createActions()49 void UIActionPoolSelector::createActions() 50 50 { 51 51 /* Global actions creation: */ … … 53 53 } 54 54 55 void UIActionPool Offline::createMenus()55 void UIActionPoolSelector::createMenus() 56 56 { 57 57 /* Global menus creation: */ … … 59 59 } 60 60 61 #include "UIActionPoolOffline.moc"62 -
trunk/src/VBox/Frontends/VirtualBox/src/selector/UIActionPoolSelector.h
r38355 r38372 2 2 * 3 3 * VBox frontends: Qt GUI ("VirtualBox"): 4 * UIActionPool Offlineclass declaration4 * UIActionPoolSelector class declaration 5 5 */ 6 6 … … 17 17 */ 18 18 19 #ifndef __UIActionPool Offline_h__20 #define __UIActionPool Offline_h__19 #ifndef __UIActionPoolSelector_h__ 20 #define __UIActionPoolSelector_h__ 21 21 22 22 /* Local includes: */ … … 31 31 32 32 /* Singleton runtime action pool: */ 33 class UIActionPool Offline: public UIActionPool33 class UIActionPoolSelector : public UIActionPool 34 34 { 35 35 Q_OBJECT; … … 44 44 45 45 /* Constructor: */ 46 UIActionPool Offline() : UIActionPool(UIActionPoolType_Offline) {}46 UIActionPoolSelector() : UIActionPool(UIActionPoolType_Offline) {} 47 47 48 48 /* Virtual helping stuff: */ … … 51 51 }; 52 52 53 #endif // __UIActionPool Offline_h__53 #endif // __UIActionPoolSelector_h__ 54 54 -
trunk/src/VBox/Frontends/VirtualBox/src/selector/VBoxSelectorWnd.cpp
r38355 r38372 42 42 #include "UIDesktopServices.h" 43 43 #include "UIGlobalSettingsExtension.h" /* extension pack installation */ 44 #include "UIActionPool Offline.h"44 #include "UIActionPoolSelector.h" 45 45 46 46 #ifdef VBOX_GUI_WITH_SYSTRAY … … 95 95 { 96 96 /* Create offline action pool: */ 97 UIActionPool Offline::create();97 UIActionPoolSelector::create(); 98 98 99 99 VBoxGlobalSettings settings = vboxGlobal().settings(); … … 565 565 566 566 /* Delete offline action pool: */ 567 UIActionPool Offline::destroy();567 UIActionPoolSelector::destroy(); 568 568 } 569 569
Note:
See TracChangeset
for help on using the changeset viewer.