From 5f9d2b296d4d4e648d0cf0bc8b22789137760a04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mika=C3=ABl=20Capelle?= Date: Wed, 20 May 2020 19:53:49 +0200 Subject: [PATCH] Remove usage of getDataFolderName() for ModDataChecker. --- src/runner/gamefeatureswrappers.cpp | 5 ----- src/runner/gamefeatureswrappers.h | 1 - 2 files changed, 6 deletions(-) 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; };