remove redundant void

This commit is contained in:
berniev
2022-07-31 14:28:37 +10:00
committed by wwmayer
parent 474981d7b6
commit 85170b2879
75 changed files with 519 additions and 519 deletions

View File

@@ -38,14 +38,14 @@ class AppExport Annotation : public DocumentObject
public:
/// Constructor
Annotation(void);
Annotation();
virtual ~Annotation();
App::PropertyStringList LabelText;
App::PropertyVector Position;
/// returns the type name of the ViewProvider
const char* getViewProviderName(void) const {
const char* getViewProviderName() const {
return "Gui::ViewProviderAnnotation";
}
};
@@ -56,7 +56,7 @@ class AppExport AnnotationLabel : public DocumentObject
public:
/// Constructor
AnnotationLabel(void);
AnnotationLabel();
virtual ~AnnotationLabel();
App::PropertyStringList LabelText;
@@ -64,7 +64,7 @@ public:
App::PropertyVector TextPosition;
/// returns the type name of the ViewProvider
const char* getViewProviderName(void) const {
const char* getViewProviderName() const {
return "Gui::ViewProviderAnnotationLabel";
}
};