diff --git a/src/runner/proxypluginwrappers.cpp b/src/runner/proxypluginwrappers.cpp index 6c69f74..230d680 100644 --- a/src/runner/proxypluginwrappers.cpp +++ b/src/runner/proxypluginwrappers.cpp @@ -27,7 +27,7 @@ using namespace MOBase; #define COMMON_I_PLUGIN_WRAPPER_DEFINITIONS(class_name) \ bool class_name::init(MOBase::IOrganizer *moInfo) \ { \ - return basicWrapperFunctionImplementation>(this, "init", boost::python::ptr(moInfo)); \ + return basicWrapperFunctionImplementation(this, "init", boost::python::ptr(moInfo)); \ } \ \ QString class_name::name() const \ @@ -80,22 +80,22 @@ std::vector IPluginDiagnoseWrapper::activeProblems() const QString IPluginDiagnoseWrapper::shortDescription(unsigned int key) const { - return basicWrapperFunctionImplementation(this, "shortDescription", key); + return basicWrapperFunctionImplementation(this, "shortDescription", key); } QString IPluginDiagnoseWrapper::fullDescription(unsigned int key) const { - return basicWrapperFunctionImplementation(this, "fullDescription", key); + return basicWrapperFunctionImplementation(this, "fullDescription", key); } bool IPluginDiagnoseWrapper::hasGuidedFix(unsigned int key) const { - return basicWrapperFunctionImplementation(this, "hasGuidedFix", key); + return basicWrapperFunctionImplementation(this, "hasGuidedFix", key); } void IPluginDiagnoseWrapper::startGuidedFix(unsigned int key) const { - basicWrapperFunctionImplementation(this, "startGuidedFix", key); + basicWrapperFunctionImplementation(this, "startGuidedFix", key); } void IPluginDiagnoseWrapper::invalidate()