| 63 | #endif |
| 64 | |
| 65 | static QAction *createSeparator(QObject *parent) |
| 66 | { |
| 67 | QAction *action = new QAction(parent); |
| 68 | action->setSeparator(true); |
| 69 | return action; |
| 70 | } |
| 71 | |
| 72 | QuickInspectorWidget::QuickInspectorWidget(QWidget *parent) |
| 73 | : QWidget(parent) |
no outgoing calls
no test coverage detected