diff --git a/src/runner/gamefeatureswrappers.cpp b/src/runner/gamefeatureswrappers.cpp index f2cf344..a8e7d97 100644 --- a/src/runner/gamefeatureswrappers.cpp +++ b/src/runner/gamefeatureswrappers.cpp @@ -74,9 +74,9 @@ void GamePluginsWrapper::readPluginLists(MOBase::IPluginList * pluginList) return basicWrapperFunctionImplementation(this, "readPluginLists", boost::python::ptr(pluginList)); } -void GamePluginsWrapper::getLoadOrder(QStringList &loadOrder) +QStringList GamePluginsWrapper::getLoadOrder() { - return basicWrapperFunctionImplementation(this, "getLoadOrder", loadOrder); + return basicWrapperFunctionImplementation(this, "getLoadOrder"); } bool GamePluginsWrapper::lightPluginsAreSupported() diff --git a/src/runner/gamefeatureswrappers.h b/src/runner/gamefeatureswrappers.h index 542c712..606b560 100644 --- a/src/runner/gamefeatureswrappers.h +++ b/src/runner/gamefeatureswrappers.h @@ -65,7 +65,7 @@ public: virtual void writePluginLists(const MOBase::IPluginList *pluginList) override; virtual void readPluginLists(MOBase::IPluginList *pluginList) override; - virtual void getLoadOrder(QStringList &loadOrder) override; + virtual QStringList getLoadOrder() override; virtual bool lightPluginsAreSupported() override; };