| 66 | } |
| 67 | |
| 68 | QList<QAction*> ContextMenuExtension::actions( const QString& group ) const |
| 69 | { |
| 70 | Q_D(const ContextMenuExtension); |
| 71 | |
| 72 | return d->extensions.value( group, QList<QAction*>() ); |
| 73 | } |
| 74 | |
| 75 | void ContextMenuExtension::addAction( const QString& group, QAction* action ) |
| 76 | { |
no test coverage detected