Trivial whitespace fix cause by by editor settings
This commit is contained in:
parent
78f8fb45ba
commit
88e5c6197d
|
@ -38,16 +38,14 @@ void FileSysClient::queryPluginList()
|
||||||
.append(Plugin::getOsSpecificInstallerLocation()));
|
.append(Plugin::getOsSpecificInstallerLocation()));
|
||||||
|
|
||||||
QString searchDirectory(installDir);
|
QString searchDirectory(installDir);
|
||||||
|
|
||||||
QDir directory(searchDirectory);
|
QDir directory(searchDirectory);
|
||||||
|
|
||||||
m_PluginList = directory.entryList(nameFilter);
|
m_PluginList = directory.entryList(nameFilter);
|
||||||
isDone(true);
|
isDone(true);
|
||||||
}
|
}
|
||||||
catch (std::exception& e)
|
catch (std::exception& e)
|
||||||
{
|
{
|
||||||
isDone(true);
|
isDone(true);
|
||||||
emit error(tr("An error occurred while trying to load the "
|
emit error(tr( "An error occurred while trying to load the "
|
||||||
"plugin list. Please contact the help desk, and "
|
"plugin list. Please contact the help desk, and "
|
||||||
"provide the following details.\n\n%1").arg(e.what()));
|
"provide the following details.\n\n%1").arg(e.what()));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue