Changeset 62217 in vbox for trunk/src/VBox
- Timestamp:
- Jul 13, 2016 11:45:34 AM (9 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/extensions
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/extensions/QIDialog.cpp
r62216 r62217 36 36 } 37 37 38 QIDialog::~QIDialog()39 {40 }41 42 38 void QIDialog::setVisible(bool fVisible) 43 39 { … … 54 50 { 55 51 /* Check for the recursive run: */ 56 AssertMsgReturn(!m_pEventLoop, ("QIDialog::exec () is called recursively!\n"), QDialog::Rejected);52 AssertMsgReturn(!m_pEventLoop, ("QIDialog::execute() is called recursively!\n"), QDialog::Rejected); 57 53 58 54 /* Reset the result-code: */ -
trunk/src/VBox/Frontends/VirtualBox/src/extensions/QIDialog.h
r62216 r62217 37 37 /** Constructs the dialog passing @a pParent and @a flags to the base-class. */ 38 38 QIDialog(QWidget *pParent = 0, Qt::WindowFlags flags = 0); 39 /** Destructs the dialog. */40 ~QIDialog();41 39 42 40 /** Defines whether the dialog is @a fVisible. */ … … 57 55 58 56 /** Handles show @a pEvent. */ 59 v oid showEvent(QShowEvent *pEvent);57 virtual void showEvent(QShowEvent *pEvent) /* override */; 60 58 /** Handles show @a pEvent sent for the first time. */ 61 59 virtual void polishEvent(QShowEvent *pEvent);
Note:
See TracChangeset
for help on using the changeset viewer.