summaryrefslogtreecommitdiff
path: root/src/pluginlist.cpp
diff options
context:
space:
mode:
authorTannin <devnull@localhost>2013-10-11 23:03:49 +0200
committerTannin <devnull@localhost>2013-10-11 23:03:49 +0200
commit382226bb46541f07e62ce689cfeaf395aa673a44 (patch)
tree97e35547f78524c6291906ce19c94699436b39b0 /src/pluginlist.cpp
parentcffd9eb4e21f0ddcddca68d8eb0f1c80c8ac6ae1 (diff)
- added new plugin to test if fnis needs to be run
- some functionality to the plugin interface to enable them to search for files&directories in the virtual FS (rudimentary atm) - functionality for plugins to react to application being started from MO - broken ESPs are no longer reported as popup windows but only in the log file - bugfix: plugins couldn't store persistent data if they had no user-editable settings
Diffstat (limited to 'src/pluginlist.cpp')
-rw-r--r--src/pluginlist.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pluginlist.cpp b/src/pluginlist.cpp
index e730d3f4..55f8a39e 100644
--- a/src/pluginlist.cpp
+++ b/src/pluginlist.cpp
@@ -953,7 +953,7 @@ PluginList::ESPInfo::ESPInfo(const QString &name, bool enabled, FILETIME time, c
m_Masters.insert(QString(iter->c_str()));
}
} catch (const std::exception &e) {
- reportError(tr("failed to parse esp file %1: %2").arg(fullPath).arg(e.what()));
+ qCritical("failed to parse esp file %s: %s", qPrintable(fullPath), e.what());
m_IsMaster = false;
}
}