Changeset 107302 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Dec 12, 2024 2:50:03 PM (5 weeks ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/manager
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/manager/UIMachineManagerWidget.cpp
r107301 r107302 40 40 #include "UILoggingDefs.h" 41 41 #include "UINotificationCenter.h" 42 #include "UIToolPaneGlobal.h" 42 43 #include "UIToolPaneMachine.h" 43 44 #include "UITools.h" … … 48 49 49 50 50 UIMachineManagerWidget::UIMachineManagerWidget(UIToolPaneMachine *pParent) 51 : m_pActionPool(pParent->actionPool()) 51 UIMachineManagerWidget::UIMachineManagerWidget(UIToolPaneGlobal *pParent, UIActionPool *pActionPool) 52 : QWidget(pParent) 53 , m_pActionPool(pActionPool) 52 54 , m_pSplitter(0) 53 55 , m_pPaneChooser(0) -
trunk/src/VBox/Frontends/VirtualBox/src/manager/UIMachineManagerWidget.h
r107301 r107302 44 44 class UIActionPool; 45 45 class UIChooser; 46 class UIToolPaneGlobal; 46 47 class UIToolPaneMachine; 47 48 class UITools; … … 122 123 public: 123 124 124 /** Constructs Virtual Machine Manager widget. */ 125 UIMachineManagerWidget(UIToolPaneMachine *pParent); 125 /** Constructs Virtual Machine Manager widget passing @a pParent to the base-class. 126 * @param pActionPool Brings the action-pool reference. */ 127 UIMachineManagerWidget(UIToolPaneGlobal *pParent, UIActionPool *pActionPool); 126 128 /** Destructs Virtual Machine Manager widget. */ 127 129 virtual ~UIMachineManagerWidget() RT_OVERRIDE;
Note:
See TracChangeset
for help on using the changeset viewer.