diff options
| author | Mikaël Capelle <capelle.mikael@gmail.com> | 2020-12-04 19:58:47 +0100 |
|---|---|---|
| committer | Mikaël Capelle <capelle.mikael@gmail.com> | 2020-12-04 19:58:47 +0100 |
| commit | 3264d7899e2560bce4591ab2142ee9d51bc7890c (patch) | |
| tree | 05e6d5549ba3300b6b2bf86d73b8ea9edf88dec3 | |
| parent | d644eecbb7ce91705ad7913a743144716f3aa264 (diff) | |
Remove unused member in proxy.
| -rw-r--r-- | src/organizerproxy.cpp | 1 | ||||
| -rw-r--r-- | src/organizerproxy.h | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/src/organizerproxy.cpp b/src/organizerproxy.cpp index 0ca3468d..acfb8404 100644 --- a/src/organizerproxy.cpp +++ b/src/organizerproxy.cpp @@ -22,7 +22,6 @@ OrganizerProxy::OrganizerProxy(OrganizerCore* organizer, PluginContainer* plugin : m_Proxied(organizer)
, m_PluginContainer(pluginContainer)
, m_Plugin(plugin)
- , m_PluginName(plugin->name())
, m_DownloadManagerProxy(std::make_unique<DownloadManagerProxy>(this, organizer->downloadManager()))
, m_ModListProxy(std::make_unique<ModListProxy>(this, organizer->modList()))
, m_PluginListProxy(std::make_unique<PluginListProxy>(this, organizer->pluginList())) { }
diff --git a/src/organizerproxy.h b/src/organizerproxy.h index c52f2730..7a91a347 100644 --- a/src/organizerproxy.h +++ b/src/organizerproxy.h @@ -106,7 +106,6 @@ private: PluginContainer *m_PluginContainer;
MOBase::IPlugin *m_Plugin;
- QString m_PluginName;
OrganizerCore::SignalAboutToRunApplication m_AboutToRun;
OrganizerCore::SignalFinishedRunApplication m_FinishedRun;
|
