Mod: redundant void 2

This commit is contained in:
berniev
2022-08-07 20:05:16 +10:00
committed by wwmayer
parent bfef3ed33a
commit f4ffd15864
805 changed files with 3787 additions and 3787 deletions

View File

@@ -58,7 +58,7 @@ void PropertyTrajectory::setValue(const Trajectory& sh)
}
const Trajectory &PropertyTrajectory::getValue(void)const
const Trajectory &PropertyTrajectory::getValue()const
{
return _Trajectory;
}
@@ -91,7 +91,7 @@ Base::BoundBox3d PropertyTrajectory::getBoundingBox() const
}
PyObject *PropertyTrajectory::getPyObject(void)
PyObject *PropertyTrajectory::getPyObject()
{
return new TrajectoryPy(new Trajectory(_Trajectory));
}
@@ -109,7 +109,7 @@ void PropertyTrajectory::setPyObject(PyObject *value)
}
}
App::Property *PropertyTrajectory::Copy(void) const
App::Property *PropertyTrajectory::Copy() const
{
PropertyTrajectory *prop = new PropertyTrajectory();
prop->_Trajectory = this->_Trajectory;
@@ -124,7 +124,7 @@ void PropertyTrajectory::Paste(const App::Property &from)
hasSetValue();
}
unsigned int PropertyTrajectory::getMemSize (void) const
unsigned int PropertyTrajectory::getMemSize () const
{
return _Trajectory.getMemSize();
}