| 69 | } |
| 70 | |
| 71 | void WideBar::addSeparator() |
| 72 | { |
| 73 | auto entry = new BarEntry(); |
| 74 | entry->qAction = QToolBar::addSeparator(); |
| 75 | entry->type = BarEntry::Separator; |
| 76 | m_entries.push_back(entry); |
| 77 | } |
| 78 | |
| 79 | auto WideBar::getMatching(QAction* act) -> QList<BarEntry*>::iterator |
| 80 | { |
no outgoing calls
no test coverage detected