Remove the toolbar from our control
| 424 | // Remove the toolbar from our control |
| 425 | // |
| 426 | void ToolDock::Undock( ToolBar *bar ) |
| 427 | { |
| 428 | if( mConfiguration.Contains( bar ) ) |
| 429 | { |
| 430 | mConfiguration.Remove( bar ); |
| 431 | } |
| 432 | mBars[ bar->GetSection() ] = nullptr; |
| 433 | } |
| 434 | |
| 435 | // |
| 436 | // Handle ToolDock events |
no test coverage detected