diff options
| author | Tannin <sherb@gmx.net> | 2016-05-15 13:06:31 +0200 |
|---|---|---|
| committer | Tannin <sherb@gmx.net> | 2016-05-15 13:06:31 +0200 |
| commit | e3c3c2dcc4c31e831ef17687cbf02ba1519f7450 (patch) | |
| tree | 99e98bfbe23ef47a510f186602d4d3094ae8bac6 /src/pluginlist.cpp | |
| parent | 519f215fd78639bbd9120ae0c24ea251f6419822 (diff) | |
fixed: after running an external application the plugin list was potentially not updated correctly
Diffstat (limited to 'src/pluginlist.cpp')
| -rw-r--r-- | src/pluginlist.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/pluginlist.cpp b/src/pluginlist.cpp index 1978c749..002c17e1 100644 --- a/src/pluginlist.cpp +++ b/src/pluginlist.cpp @@ -535,6 +535,8 @@ void PluginList::setState(const QString &name, PluginStates state) auto iter = m_ESPsByName.find(name.toLower());
if (iter != m_ESPsByName.end()) {
m_ESPs[iter->second].m_Enabled = state == IPluginList::STATE_ACTIVE;
+ } else {
+ qWarning("plugin %s not found", qPrintable(name));
}
}
|
