| 100 | }; |
| 101 | |
| 102 | MIDebuggerPlugin::MIDebuggerPlugin(const QString& componentName, const QString& displayName, QObject* parent, |
| 103 | const KPluginMetaData& metaData) |
| 104 | : KDevelop::IPlugin(componentName, parent, metaData) |
| 105 | , m_displayName(displayName) |
| 106 | { |
| 107 | core()->debugController()->initializeUi(); |
| 108 | |
| 109 | if (qobject_cast<QGuiApplication*>(QCoreApplication::instance())) { // For our guiless test |
| 110 | setupActions(); |
| 111 | } |
| 112 | setupDBus(); |
| 113 | } |
| 114 | |
| 115 | void MIDebuggerPlugin::setupActions() |
| 116 | { |
nothing calls this directly
no test coverage detected