- Timestamp:
- May 26, 2017 4:10:48 PM (8 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/hostnetwork/UIHostNetworkManager.h
r67075 r67122 38 38 39 39 40 /** Host Network Manager widget. */40 /** QWidget extension providing GUI with the pane to control host network related functionality. */ 41 41 class UIHostNetworkManagerWidget : public QIWithRetranslateUI<QWidget> 42 42 { … … 167 167 168 168 169 /** Host Network Manager dialog factory. */169 /** QIManagerDialogFactory extension used as a factory for Host Network Manager dialog. */ 170 170 class UIHostNetworkManagerFactory : public QIManagerDialogFactory 171 171 { … … 178 178 179 179 180 /** QIManagerDialog sub-class used as Host Network Manager dialog. */180 /** QIManagerDialog extension providing GUI with the dialog to control host network related functionality. */ 181 181 class UIHostNetworkManager : public QIWithRetranslateUI<QIManagerDialog> 182 182 { -
trunk/src/VBox/Frontends/VirtualBox/src/medium/UIMediumManager.h
r67075 r67122 51 51 52 52 53 /** Medium Manager widget. */53 /** QWidget extension providing GUI with the pane to control media related functionality. */ 54 54 class UIMediumManagerWidget : public QIWithRetranslateUI<QWidget> 55 55 { … … 235 235 236 236 /** Performs search for the @a pTree child which corresponds to the @a condition but not @a pException. */ 237 static UIMediumItem *searchItem(QITreeWidget *pTree, const CheckIfSuitableBy &condition, CheckIfSuitableBy *pException = 0); 237 static UIMediumItem *searchItem(QITreeWidget *pTree, 238 const CheckIfSuitableBy &condition, 239 CheckIfSuitableBy *pException = 0); 238 240 /** Performs search for the @a pParentItem child which corresponds to the @a condition but not @a pException. */ 239 static UIMediumItem *searchItem(QTreeWidgetItem *pParentItem, const CheckIfSuitableBy &condition, CheckIfSuitableBy *pException = 0); 241 static UIMediumItem *searchItem(QTreeWidgetItem *pParentItem, 242 const CheckIfSuitableBy &condition, 243 CheckIfSuitableBy *pException = 0); 240 244 241 245 /** Checks if @a action can be used for @a pItem. */ … … 320 324 321 325 322 /** Medium Manager dialog factory. */326 /** QIManagerDialogFactory extension used as a factory for Virtual Medium Manager dialog. */ 323 327 class UIMediumManagerFactory : public QIManagerDialogFactory 324 328 { … … 331 335 332 336 333 /** QIManagerDialog sub-class used as Host Network Manager dialog. */337 /** QIManagerDialog extension providing GUI with the dialog to control media related functionality. */ 334 338 class UIMediumManager : public QIWithRetranslateUI<QIManagerDialog> 335 339 {
Note:
See TracChangeset
for help on using the changeset viewer.