| 693 | } |
| 694 | |
| 695 | void Container::resetTabColors(const QColor& color) |
| 696 | { |
| 697 | Q_D(Container); |
| 698 | |
| 699 | for (int i = 0; i < count(); i++){ |
| 700 | d->tabBar->setTabTextColor(i, color); |
| 701 | } |
| 702 | } |
| 703 | |
| 704 | void Container::setTabColor(const View* view, const QColor& color) |
| 705 | { |
no test coverage detected