Changeset 47462 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Jul 29, 2013 2:40:42 PM (11 years ago)
- Location:
- trunk/src/VBox/Frontends/VirtualBox/src/widgets
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIPopupStack.cpp
r47461 r47462 67 67 m_pScrollViewport->updatePopupPane(strPopupPaneID, 68 68 strMessage, strDetails); 69 70 /* Propagate width: */71 propagateWidth();72 69 } 73 70 … … 76 73 /* Redirect request to viewport: */ 77 74 m_pScrollViewport->recallPopupPane(strPopupPaneID); 78 79 /* Propagate width: */80 propagateWidth();81 75 } 82 76 … … 114 108 int iX = fIsWindow ? geo.x() : 0; 115 109 int iY = fIsWindow ? geo.y() : 0; 116 /* Subtractmenu-bar height: */110 /* Add menu-bar height: */ 117 111 iY += m_iParentMenuBarHeight; 118 112 … … 222 216 case QEvent::Resize: 223 217 { 224 /* Propagate stackwidth: */218 /* Propagate width: */ 225 219 propagateWidth(); 226 220 /* Adjust geometry: */ -
trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIPopupStackViewport.h
r47461 r47462 34 34 signals: 35 35 36 /* Notifier : Layout stuff: */36 /* Notifiers: Layout stuff: */ 37 37 void sigProposePopupPaneWidth(int iWidth); 38 38 void sigSizeHintChanged(); 39 39 40 /* Notifier : Popup-pane stuff: */40 /* Notifiers: Popup-pane stuff: */ 41 41 void sigPopupPaneDone(QString strPopupPaneID, int iResultCode); 42 42 void sigPopupPaneRemoved(QString strPopupPaneID);
Note:
See TracChangeset
for help on using the changeset viewer.