0
0
mirror of https://github.com/fralx/LimeReport.git synced 2025-11-25 00:18:06 +03:00

Define code style and format all source file using clang-format-14

except those placed in 3rdparty directories.
This commit is contained in:
Андрей Лухнов
2024-09-04 17:31:16 +03:00
parent c5b9ac265d
commit 0fca7169d3
285 changed files with 19120 additions and 17875 deletions

View File

@@ -4,8 +4,7 @@
#include <QObject>
namespace LimeReport {
class AxisData : public QObject
{
class AxisData: public QObject {
Q_OBJECT
Q_PROPERTY(bool reverseDirection READ reverseDirection WRITE setReverseDirection)
Q_PROPERTY(bool calculateAxisScale READ calculateAxisScale WRITE setCalculateAxisScale)
@@ -21,10 +20,10 @@ public:
XAxis = 1
};
AxisData(AxisType type, QObject *parent = nullptr);
AxisData(AxisType type, QObject* parent = nullptr);
QString toString() const;
void copy(AxisData *other);
void copy(AxisData* other);
void update();
void update(qreal minValue, qreal maxValue);
void updateForDesignMode();
@@ -88,6 +87,6 @@ private:
bool m_isStepAutomatic;
const AxisType m_type;
};
};
}; // namespace LimeReport
#endif // AXISDATA_H