Changeset 41235 in vbox for trunk/src/VBox/Frontends/VirtualBox
- Timestamp:
- May 10, 2012 1:20:09 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/net/UINetworkManager.cpp
r41153 r41235 281 281 282 282 /* Constructor: */ 283 UINetworkManagerDialog(QWidget *pParent = 0) 284 : QIWithRetranslateUI<QMainWindow>(pParent) 283 UINetworkManagerDialog() 285 284 { 286 285 /* Do not count that window as important for application, … … 363 362 /* Hide button-box: */ 364 363 m_pButtonBox->setHidden(true); 364 /* Let central-widget update its layout before being hidden: */ 365 QCoreApplication::sendPostedEvents(centralWidget(), QEvent::LayoutRequest); 365 366 /* Hide dialog: */ 366 367 hide(); … … 397 398 void showEvent(QShowEvent *pShowEvent) 398 399 { 399 /* Resize to minimum size : */400 resize(minimumSize ());400 /* Resize to minimum size-hint: */ 401 resize(minimumSizeHint()); 401 402 402 403 /* Center according current main application window: */
Note:
See TracChangeset
for help on using the changeset viewer.