Trivial whitespace fix cause by by editor settings

This commit is contained in:
Adam Potolsky 2015-06-04 14:06:17 -07:00
parent 78f8fb45ba
commit 88e5c6197d
2 changed files with 8 additions and 10 deletions

View File

@ -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()));
} }