Sheet: Apply clang format

This commit is contained in:
wmayer
2023-09-10 13:07:23 +02:00
committed by wwmayer
parent b9ac7166e4
commit 159525084d
25 changed files with 2733 additions and 2054 deletions

View File

@@ -24,8 +24,10 @@
#include "PropertyColumnWidths.h"
// inclusion of the generated files (generated out of PropertyColumnWidthsPy.xml)
// clang-format off
#include "PropertyColumnWidthsPy.h"
#include "PropertyColumnWidthsPy.cpp"
// clang-format on
using namespace Spreadsheet;
@@ -36,7 +38,7 @@ std::string PropertyColumnWidthsPy::representation() const
return {"<PropertyColumnWidths object>"};
}
PyObject *PropertyColumnWidthsPy::PyMake(struct _typeobject *, PyObject *, PyObject *) // Python wrapper
PyObject* PropertyColumnWidthsPy::PyMake(struct _typeobject*, PyObject*, PyObject*)// Python wrapper
{
// create a new instance of PropertyColumnWidthsPy and the Twin object
return new PropertyColumnWidthsPy(new PropertyColumnWidths);
@@ -48,7 +50,7 @@ int PropertyColumnWidthsPy::PyInit(PyObject* /*args*/, PyObject* /*kwd*/)
return 0;
}
PyObject *PropertyColumnWidthsPy::getCustomAttributes(const char* /*attr*/) const
PyObject* PropertyColumnWidthsPy::getCustomAttributes(const char* /*attr*/) const
{
return nullptr;
}