============================================================================
| 963 | |
| 964 | //============================================================================ |
| 965 | void CDockWidget::setToolBar(QToolBar* ToolBar) |
| 966 | { |
| 967 | if (d->ToolBar) |
| 968 | { |
| 969 | delete d->ToolBar; |
| 970 | } |
| 971 | |
| 972 | d->ToolBar = ToolBar; |
| 973 | d->Layout->insertWidget(0, d->ToolBar); |
| 974 | this->connect(this, SIGNAL(topLevelChanged(bool)), SLOT(setToolbarFloatingStyle(bool))); |
| 975 | setToolbarFloatingStyle(isFloating()); |
| 976 | } |
| 977 | |
| 978 | |
| 979 | //============================================================================ |
nothing calls this directly
no test coverage detected