From c47b94d5349d15e91773c3f054df5c3272c76bd7 Mon Sep 17 00:00:00 2001 From: AnyOldName3 Date: Tue, 17 Apr 2018 22:31:53 +0100 Subject: [PATCH] Restore indentation which rearraging things broke --- src/runner/proxypluginwrappers.cpp | 2 +- src/runner/proxypluginwrappers.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/runner/proxypluginwrappers.cpp b/src/runner/proxypluginwrappers.cpp index 5a6693f..9a08b08 100644 --- a/src/runner/proxypluginwrappers.cpp +++ b/src/runner/proxypluginwrappers.cpp @@ -169,7 +169,7 @@ std::set IPluginInstallerCustomWrapper::supportedExtensions() const IPluginInstaller::EInstallResult IPluginInstallerCustomWrapper::install(GuessedValue &modName, const QString &archiveName, - const QString &version, int modID) + const QString &version, int modID) { try { return this->get_override("install")(modName, archiveName, version, modID); diff --git a/src/runner/proxypluginwrappers.h b/src/runner/proxypluginwrappers.h index fc1e4ec..ebb82fc 100644 --- a/src/runner/proxypluginwrappers.h +++ b/src/runner/proxypluginwrappers.h @@ -84,7 +84,7 @@ protected: class IPluginInstallerCustomWrapper : public MOBase::IPluginInstallerCustom, public boost::python::wrapper { Q_OBJECT - Q_INTERFACES(MOBase::IPlugin MOBase::IPluginInstaller MOBase::IPluginInstallerCustom) + Q_INTERFACES(MOBase::IPlugin MOBase::IPluginInstaller MOBase::IPluginInstallerCustom) public: virtual bool init(MOBase::IOrganizer *moInfo); @@ -101,7 +101,7 @@ public: virtual bool isArchiveSupported(const QString &archiveName) const; virtual std::set supportedExtensions() const; virtual EInstallResult install(MOBase::GuessedValue &modName, const QString &archiveName, - const QString &version, int modID); + const QString &version, int modID); virtual void setParentWidget(QWidget *parent); };