============================================================================
| 978 | |
| 979 | //============================================================================ |
| 980 | void CDockWidget::setToolBarStyle(Qt::ToolButtonStyle Style, eState State) |
| 981 | { |
| 982 | if (StateFloating == State) |
| 983 | { |
| 984 | d->ToolBarStyleFloating = Style; |
| 985 | } |
| 986 | else |
| 987 | { |
| 988 | d->ToolBarStyleDocked = Style; |
| 989 | } |
| 990 | |
| 991 | setToolbarFloatingStyle(isFloating()); |
| 992 | } |
| 993 | |
| 994 | |
| 995 | //============================================================================ |
no outgoing calls
no test coverage detected