From 287a82ed488591511fb8e45996f195c821efb901 Mon Sep 17 00:00:00 2001 From: Thomas Tanner Date: Sat, 5 Dec 2015 06:51:41 +0000 Subject: [PATCH] Most of work for savegame --- src/runner/uibasewrappers.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runner/uibasewrappers.h b/src/runner/uibasewrappers.h index aee6537..611ea18 100644 --- a/src/runner/uibasewrappers.h +++ b/src/runner/uibasewrappers.h @@ -323,7 +323,7 @@ struct IPluginGameWrapper: MOBase::IPluginGame, boost::python::wrapperget_override("getLoadorderMechanism")(); } virtual int getNexusModOrganizerID() const override { return this->get_override("getNexusModOrganizerID")(); } virtual int getNexusGameID() const override { return this->get_override("getNexusGameID")(); } - virtual bool looksValid(const QDir &dir) const override { return this->get_override("looksValid")(dir); } + virtual bool looksValid(QDir const &dir) const override { return this->get_override("looksValid")(dir); } //Plugin interface. Could this bit be implemented just once? virtual bool init(MOBase::IOrganizer *moInfo) override { return this->get_override("init")(moInfo); }