App: improve whitespaces

This commit is contained in:
wmayer
2022-08-01 01:29:47 +02:00
parent 1a457d0fb9
commit a7172cd730
8 changed files with 21 additions and 20 deletions

View File

@@ -30,10 +30,10 @@ using namespace App;
PROPERTY_SOURCE(App::Annotation, App::DocumentObject)
Annotation::Annotation()
Annotation::Annotation()
{
ADD_PROPERTY(LabelText ,(""));
ADD_PROPERTY(Position,(Base::Vector3d()));
ADD_PROPERTY(LabelText, (""));
ADD_PROPERTY(Position, (Base::Vector3d()));
}
Annotation::~Annotation() = default;
@@ -43,11 +43,11 @@ Annotation::~Annotation() = default;
PROPERTY_SOURCE(App::AnnotationLabel, App::DocumentObject)
AnnotationLabel::AnnotationLabel()
AnnotationLabel::AnnotationLabel()
{
ADD_PROPERTY_TYPE(LabelText,(""),"Label",Prop_Output,"Text label of the annotation");
ADD_PROPERTY_TYPE(BasePosition,(Base::Vector3d()),"Label",Prop_Output,"Base position");
ADD_PROPERTY_TYPE(TextPosition,(Base::Vector3d()),"Label",Prop_Output,"Text position");
ADD_PROPERTY_TYPE(LabelText, (""), "Label",Prop_Output, "Text label of the annotation");
ADD_PROPERTY_TYPE(BasePosition, (Base::Vector3d()), "Label", Prop_Output, "Base position");
ADD_PROPERTY_TYPE(TextPosition, (Base::Vector3d()), "Label", Prop_Output, "Text position");
}
AnnotationLabel::~AnnotationLabel() = default;