| 29 | }; |
| 30 | |
| 31 | QuickCommandsPlugin::QuickCommandsPlugin(QObject *object, const QVariantList &args) |
| 32 | : Konsole::IKonsolePlugin(object, args) |
| 33 | , priv(std::make_unique<Private>()) |
| 34 | { |
| 35 | priv->showQuickAccess = new QAction(); |
| 36 | setName(QStringLiteral("QuickCommands")); |
| 37 | } |
| 38 | |
| 39 | QuickCommandsPlugin::~QuickCommandsPlugin() = default; |
| 40 |
nothing calls this directly
no outgoing calls
no test coverage detected