Sheet: modernize C++: redundant void arg

This commit is contained in:
wmayer
2023-08-05 14:27:16 +02:00
committed by wwmayer
parent 899932cec0
commit ca84a0662d
14 changed files with 25 additions and 25 deletions

View File

@@ -408,7 +408,7 @@ void Sheet::setCell(CellAddress address, const char * value)
* @returns The Python object.
*/
PyObject *Sheet::getPyObject(void)
PyObject *Sheet::getPyObject()
{
if (PythonObject.is(Py::_None())){
// ref counter is set to 1
@@ -901,7 +901,7 @@ void Sheet::updateBindings()
*
*/
DocumentObjectExecReturn *Sheet::execute(void)
DocumentObjectExecReturn *Sheet::execute()
{
updateBindings();
@@ -1057,7 +1057,7 @@ DocumentObjectExecReturn *Sheet::execute(void)
*
*/
short Sheet::mustExecute(void) const
short Sheet::mustExecute() const
{
if (!cellErrors.empty() || cells.isDirty())
return 1;