Restore indentation which rearraging things broke

This commit is contained in:
AnyOldName3
2018-04-20 16:40:38 +01:00
parent ca51a53d41
commit c47b94d534
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -169,7 +169,7 @@ std::set<QString> IPluginInstallerCustomWrapper::supportedExtensions() const
IPluginInstaller::EInstallResult IPluginInstallerCustomWrapper::install(GuessedValue<QString> &modName, const QString &archiveName,
const QString &version, int modID)
const QString &version, int modID)
{
try {
return this->get_override("install")(modName, archiveName, version, modID);
+2 -2
View File
@@ -84,7 +84,7 @@ protected:
class IPluginInstallerCustomWrapper : public MOBase::IPluginInstallerCustom, public boost::python::wrapper<MOBase::IPluginInstallerCustom>
{
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<QString> supportedExtensions() const;
virtual EInstallResult install(MOBase::GuessedValue<QString> &modName, const QString &archiveName,
const QString &version, int modID);
const QString &version, int modID);
virtual void setParentWidget(QWidget *parent);
};