diff --git a/src/runner/pythonrunner.cpp b/src/runner/pythonrunner.cpp index e9ecc94..e8e3977 100644 --- a/src/runner/pythonrunner.cpp +++ b/src/runner/pythonrunner.cpp @@ -1302,16 +1302,16 @@ BOOST_PYTHON_MODULE(mobase) bpy::class_("IPluginInstallerSimple") .def("install", &IPluginInstallerSimple::install) - .def("getParentWidget", &IPluginInstallerSimpleWrapper::parentWidget, bpy::return_value_policy()) - .def("getManager", &IPluginInstallerSimpleWrapper::manager, bpy::return_value_policy()) + .def("parentWidget", &IPluginInstallerSimpleWrapper::parentWidget, bpy::return_value_policy()) + .def("manager", &IPluginInstallerSimpleWrapper::manager, bpy::return_value_policy()) ; bpy::class_("IPluginInstallerCustom") .def("isArchiveSupported", &IPluginInstallerCustom::isArchiveSupported) .def("supportedExtensions", &IPluginInstallerCustom::supportedExtensions) .def("install", &IPluginInstallerCustom::install) - .def("getParentWidget", &IPluginInstallerCustomWrapper::parentWidget, bpy::return_value_policy()) - .def("getManager", &IPluginInstallerCustomWrapper::manager, bpy::return_value_policy()) + .def("parentWidget", &IPluginInstallerCustomWrapper::parentWidget, bpy::return_value_policy()) + .def("manager", &IPluginInstallerCustomWrapper::manager, bpy::return_value_policy()) ; bpy::class_("IPluginModPage")