From 5a2c107608acb4fbc0ba05818d7ddee16f9dfd36 Mon Sep 17 00:00:00 2001 From: Kacper Donat Date: Thu, 24 Apr 2025 23:39:04 +0200 Subject: [PATCH] App: Fix inheritance information for PropertyEnumeration For some reason PropertyEnumeration in our type information system was said to be inherited from App::PropertyInteger, wich is not the case. This commit fixes that mistake. --- src/App/PropertyStandard.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App/PropertyStandard.cpp b/src/App/PropertyStandard.cpp index 4ef6b2e335..3bec6aa2ad 100644 --- a/src/App/PropertyStandard.cpp +++ b/src/App/PropertyStandard.cpp @@ -277,7 +277,7 @@ unsigned int PropertyPath::getMemSize() const // PropertyEnumeration //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -TYPESYSTEM_SOURCE(App::PropertyEnumeration, App::PropertyInteger) +TYPESYSTEM_SOURCE(App::PropertyEnumeration, App::Property) //************************************************************************** // Construction/Destruction