diff --git a/src/runner/gamefeatureswrappers.cpp b/src/runner/gamefeatureswrappers.cpp index 3efb7f4..462ce91 100644 --- a/src/runner/gamefeatureswrappers.cpp +++ b/src/runner/gamefeatureswrappers.cpp @@ -102,10 +102,6 @@ bool LocalSavegamesWrapper::prepareProfile(MOBase::IProfile * profile) ///////////////////////////// /// ModDataChecker Wrapper -QString ModDataCheckerWrapper::getDataFolderName() const { - return basicWrapperFunctionImplementation(this, "getDataFolderName"); -} - bool ModDataCheckerWrapper::dataLooksValid(std::shared_ptr fileTree) const { return basicWrapperFunctionImplementation(this, "dataLooksValid", fileTree); } @@ -282,7 +278,6 @@ void registerGameFeaturesPythonConverters() ; bpy::class_("ModDataChecker") - .def("getDataFolderName", bpy::pure_virtual(&ModDataChecker::getDataFolderName)) .def("dataLooksValid", bpy::pure_virtual(&ModDataChecker::dataLooksValid)) ; diff --git a/src/runner/gamefeatureswrappers.h b/src/runner/gamefeatureswrappers.h index 2cedf61..23c8ae7 100644 --- a/src/runner/gamefeatureswrappers.h +++ b/src/runner/gamefeatureswrappers.h @@ -83,7 +83,6 @@ public: static constexpr const char* className = "ModDataCheckerWrapper"; using boost::python::wrapper::get_override; - virtual QString getDataFolderName() const override; virtual bool dataLooksValid(std::shared_ptr fileTree) const; };