From 47e25da95e6344248df745477ee0f13535c2451f Mon Sep 17 00:00:00 2001 From: Thomas Tanner Date: Sun, 22 Nov 2015 08:42:42 +0000 Subject: [PATCH] Removes igameinfo.h from everywhere apart from (sort of) the pythonrunner plugin. --- src/runner/pythonrunner.cpp | 2 +- src/runner/uibasewrappers.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/runner/pythonrunner.cpp b/src/runner/pythonrunner.cpp index b4cd29a..e85d23b 100644 --- a/src/runner/pythonrunner.cpp +++ b/src/runner/pythonrunner.cpp @@ -706,7 +706,7 @@ BOOST_PYTHON_MODULE(mobase) bpy::class_("PluginSetting", bpy::init()); bpy::class_("GameInfo") - .def("type", bpy::pure_virtual(&IGameInfo::type)) +// .def("type", bpy::pure_virtual(&IGameInfo::type)) // .def("path", bpy::pure_virtual(&IGameInfo::path)) // .def("binaryName", bpy::pure_virtual(&IGameInfo::binaryName)) ; diff --git a/src/runner/uibasewrappers.h b/src/runner/uibasewrappers.h index b17ea0b..92b7786 100644 --- a/src/runner/uibasewrappers.h +++ b/src/runner/uibasewrappers.h @@ -260,7 +260,7 @@ struct IInstallationManagerWrapper: MOBase::IInstallationManager, boost::python: struct IGameInfoWrapper: MOBase::IGameInfo, boost::python::wrapper { - virtual Type type() const { return this->get_override("type")(); } +// virtual Type type() const { return this->get_override("type")(); } // virtual QString path() const { return this->get_override("path")(); } // virtual QString binaryName() const { return this->get_override("binaryName")(); } };