Mod: redundant void 2

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

View File

@@ -58,12 +58,12 @@ void PropertyTooltable::setValue(const Tooltable& tt)
}
const Tooltable &PropertyTooltable::getValue(void)const
const Tooltable &PropertyTooltable::getValue()const
{
return _Tooltable;
}
PyObject *PropertyTooltable::getPyObject(void)
PyObject *PropertyTooltable::getPyObject()
{
return new TooltablePy(new Tooltable(_Tooltable));
}
@@ -81,7 +81,7 @@ void PropertyTooltable::setPyObject(PyObject *value)
}
}
App::Property *PropertyTooltable::Copy(void) const
App::Property *PropertyTooltable::Copy() const
{
PropertyTooltable *prop = new PropertyTooltable();
prop->_Tooltable = this->_Tooltable;
@@ -96,7 +96,7 @@ void PropertyTooltable::Paste(const App::Property &from)
hasSetValue();
}
unsigned int PropertyTooltable::getMemSize (void) const
unsigned int PropertyTooltable::getMemSize () const
{
return _Tooltable.getMemSize();
}