Core: Rename ViewProviderPythonFeature to ViewProviderFeaturePython

Fixes #15888
This commit is contained in:
wmayer
2024-08-18 14:00:31 +02:00
committed by Yorik van Havre
parent e4a509cc77
commit c30d42c441
57 changed files with 217 additions and 217 deletions

View File

@@ -607,7 +607,7 @@ bool FeaturePythonImp::editProperty(const char *name)
namespace App {
PROPERTY_SOURCE_TEMPLATE(App::FeaturePython, App::DocumentObject)
template<> const char* App::FeaturePython::getViewProviderName() const {
return "Gui::ViewProviderPythonFeature";
return "Gui::ViewProviderFeaturePython";
}
template<> PyObject* App::FeaturePython::getPyObject() {
if (PythonObject.is(Py::_None())) {
@@ -625,7 +625,7 @@ template class AppExport FeaturePythonT<DocumentObject>;
namespace App {
PROPERTY_SOURCE_TEMPLATE(App::GeometryPython, App::GeoFeature)
template<> const char* App::GeometryPython::getViewProviderName() const {
return "Gui::ViewProviderPythonGeometry";
return "Gui::ViewProviderGeometryPython";
}
// explicit template instantiation
template class AppExport FeaturePythonT<GeoFeature>;