Trivial whitespace fix cause by by editor settings
This commit is contained in:
parent
78f8fb45ba
commit
88e5c6197d
|
@ -34,22 +34,20 @@ void FileSysClient::queryPluginList()
|
|||
QStringList nameFilter(extension);
|
||||
|
||||
QString installDir(m_CoreInterface.getInstalledDir()
|
||||
.append(QDir::separator())
|
||||
.append(Plugin::getOsSpecificInstallerLocation()));
|
||||
.append(QDir::separator())
|
||||
.append(Plugin::getOsSpecificInstallerLocation()));
|
||||
|
||||
QString searchDirectory(installDir);
|
||||
|
||||
QDir directory(searchDirectory);
|
||||
|
||||
m_PluginList = directory.entryList(nameFilter);
|
||||
isDone(true);
|
||||
}
|
||||
catch (std::exception& e)
|
||||
{
|
||||
isDone(true);
|
||||
emit error(tr("An error occurred while trying to load the "
|
||||
"plugin list. Please contact the help desk, and "
|
||||
"provide the following details.\n\n%1").arg(e.what()));
|
||||
emit error(tr( "An error occurred while trying to load the "
|
||||
"plugin list. Please contact the help desk, and "
|
||||
"provide the following details.\n\n%1").arg(e.what()));
|
||||
}
|
||||
emit queryPluginDone();
|
||||
return;
|
||||
|
|
|
@ -30,11 +30,11 @@ class SslCertificate;
|
|||
|
||||
class PluginWizardPage : public QWizardPage, public Ui::PluginWizardPage {
|
||||
|
||||
Q_OBJECT
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
PluginWizardPage(AppConfig& appConfig, QWidget *parent = 0);
|
||||
~PluginWizardPage();
|
||||
~PluginWizardPage();
|
||||
|
||||
void setFinished(bool b) { m_Finished = b; }
|
||||
void setEmail(QString e) { m_Email = e; }
|
||||
|
@ -44,7 +44,7 @@ public:
|
|||
void initializePage();
|
||||
|
||||
protected:
|
||||
void changeEvent(QEvent *e);
|
||||
void changeEvent(QEvent *e);
|
||||
|
||||
protected slots:
|
||||
void showError(QString error);
|
||||
|
|
Loading…
Reference in New Issue