| 44 | }; |
| 45 | |
| 46 | SSHManagerPlugin::SSHManagerPlugin(QObject *object, const QVariantList &args) |
| 47 | : Konsole::IKonsolePlugin(object, args) |
| 48 | , d(std::make_unique<SSHManagerPluginPrivate>()) |
| 49 | { |
| 50 | d->showQuickAccess = new QAction(); |
| 51 | |
| 52 | setName(QStringLiteral("SshManager")); |
| 53 | KCrash::initialize(); |
| 54 | } |
| 55 | |
| 56 | SSHManagerPlugin::~SSHManagerPlugin() |
| 57 | { |
nothing calls this directly
no outgoing calls
no test coverage detected