Changeset 68195 in vbox
- Timestamp:
- Jul 31, 2017 11:59:01 AM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 117292
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/selector
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/selector/UIDesktopPane.cpp
r68157 r68195 95 95 , m_pRefreshButton(0), m_pRefreshAction(pRefreshAction) 96 96 { 97 /* Make sure refresh action was passed: */98 AssertMsg(m_pRefreshAction, ("Refresh action was NOT passed!"));99 100 97 /* Translate finally: */ 101 98 retranslateUi(); … … 227 224 *********************************************************************************************************************************/ 228 225 229 UIDesktopPane::UIDesktopPane(QAction *pRefreshAction , QWidget *pParent /* = 0 */)226 UIDesktopPane::UIDesktopPane(QAction *pRefreshAction /* = 0 */, QWidget *pParent /* = 0 */) 230 227 : QWidget(pParent) 231 228 { -
trunk/src/VBox/Frontends/VirtualBox/src/selector/UIDesktopPane.h
r68157 r68195 38 38 /** Constructs desktop pane passing @a pParent to the base-class. 39 39 * @param pRefreshAction Brings the refresh action reference. */ 40 UIDesktopPane(QAction *pRefreshAction , QWidget *pParent = 0);40 UIDesktopPane(QAction *pRefreshAction = 0, QWidget *pParent = 0); 41 41 42 42 /** Updates @a strText details and switches to text details pane. */
Note:
See TracChangeset
for help on using the changeset viewer.