Sheet: modernize C++: redundant void arg
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user