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

@@ -47,13 +47,13 @@ class AppExport PropertyPythonObject : public Property
TYPESYSTEM_HEADER();
public:
PropertyPythonObject(void);
PropertyPythonObject();
virtual ~PropertyPythonObject();
void setValue(Py::Object);
Py::Object getValue() const;
virtual PyObject *getPyObject(void);
virtual PyObject *getPyObject();
virtual void setPyObject(PyObject *);
/** Use Python's pickle module to save the object */
@@ -63,8 +63,8 @@ public:
virtual void SaveDocFile (Base::Writer &writer) const;
virtual void RestoreDocFile(Base::Reader &reader);
virtual unsigned int getMemSize (void) const;
virtual Property *Copy(void) const;
virtual unsigned int getMemSize () const;
virtual Property *Copy() const;
virtual void Paste(const Property &from);
std::string toString() const;