- Timestamp:
- Feb 10, 2025 6:03:41 PM (3 months ago)
- svn:sync-xref-src-repo-rev:
- 167453
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/manager/chooser
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/manager/chooser/UIChooserNodeGlobal.cpp
r108147 r108148 36 36 37 37 UIChooserNodeGlobal::UIChooserNodeGlobal(UIChooserNode *pParent, 38 int iPosition, 39 const QString &) 40 : UIChooserNode(pParent) 41 { 42 /* Add to parent: */ 43 if (parentNode()) 44 parentNode()->addNode(this, iPosition); 45 46 /* Apply language settings: */ 47 sltRetranslateUI(); 48 connect(&translationEventListener(), &UITranslationEventListener::sigRetranslateUI, 49 this, &UIChooserNodeGlobal::sltRetranslateUI); 50 } 51 52 UIChooserNodeGlobal::UIChooserNodeGlobal(UIChooserNode *pParent, 53 int iPosition, 54 UIChooserNodeGlobal *pCopyFrom) 38 int iPosition) 55 39 : UIChooserNode(pParent) 56 40 { -
trunk/src/VBox/Frontends/VirtualBox/src/manager/chooser/UIChooserNodeGlobal.h
r108147 r108148 44 44 45 45 /** Constructs chooser node passing @a pParent to the base-class. 46 * @param iPosition Brings the initial node position. 47 * @param strTip Brings the dummy tip. */ 46 * @param iPosition Brings the initial node position. */ 48 47 UIChooserNodeGlobal(UIChooserNode *pParent, 49 int iPosition, 50 const QString &strTip); 51 /** Constructs chooser node passing @a pParent to the base-class. 52 * @param iPosition Brings the initial node position. 53 * @param pCopyFrom Brings the node to copy data from. */ 54 UIChooserNodeGlobal(UIChooserNode *pParent, 55 int iPosition, 56 UIChooserNodeGlobal *pCopyFrom); 48 int iPosition); 57 49 /** Destructs chooser node. */ 58 50 virtual ~UIChooserNodeGlobal() RT_OVERRIDE;
Note:
See TracChangeset
for help on using the changeset viewer.