Fix regression introduced in 6723f42

Use of QString for static DefaultSeparator lead to crashes on Windows
This commit is contained in:
Janek Bevendorff
2018-02-11 15:08:07 +01:00
parent 13dc1e02ab
commit ab3775d4c5
3 changed files with 20 additions and 26 deletions

View File

@@ -93,7 +93,7 @@ QString FilePath::pluginPath(const QString& name)
QString FilePath::wordlistPath(const QString& name)
{
return m_instance->dataPath("wordlists/" + name);
return dataPath("wordlists/" + name);
}
QIcon FilePath::applicationIcon()