============================================================================
| 1109 | |
| 1110 | //============================================================================ |
| 1111 | void CDockWidget::setFloating() |
| 1112 | { |
| 1113 | if (isClosed()) |
| 1114 | { |
| 1115 | return; |
| 1116 | } |
| 1117 | |
| 1118 | if (this->isAutoHide()) |
| 1119 | { |
| 1120 | dockAreaWidget()->setFloating(); |
| 1121 | } |
| 1122 | else |
| 1123 | { |
| 1124 | d->TabWidget->detachDockWidget(); |
| 1125 | } |
| 1126 | } |
| 1127 | |
| 1128 | |
| 1129 | //============================================================================ |
no test coverage detected