| 1303 | } |
| 1304 | |
| 1305 | Button* |
| 1306 | DockablePanel::insertHeaderButton(int headerPosition) |
| 1307 | { |
| 1308 | Button* ret = new Button(_imp->_headerWidget); |
| 1309 | |
| 1310 | _imp->_headerLayout->insertWidget(headerPosition, ret); |
| 1311 | |
| 1312 | return ret; |
| 1313 | } |
| 1314 | |
| 1315 | Gui* |
| 1316 | DockablePanel::getGui() const |
nothing calls this directly
no test coverage detected