Changeset 81827 in vbox
- Timestamp:
- Nov 13, 2019 2:02:15 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/widgets/UISlidingToolBar.cpp
r80955 r81827 167 167 pal2.setColor(QPalette::Window, palette().color(QPalette::Window)); 168 168 m_pWidget->setPalette(pal2); 169 UIMenuBarEditorWidget *pEditorWidget = qobject_cast<UIMenuBarEditorWidget*>(m_pWidget); 170 if (pEditorWidget) 171 connect(pEditorWidget, &UIMenuBarEditorWidget::sigCancelClicked, this, &UISlidingToolBar::close); 169 /* Using abstract (old-style) connection here(!) since the base classes can be different: */ 170 connect(m_pWidget, SIGNAL(sigCancelClicked()), this, SLOT(close())); 172 171 /* Add child-widget into area: */ 173 172 m_pWidget->setParent(m_pArea);
Note:
See TracChangeset
for help on using the changeset viewer.