From 3658965912f5f524ab10c1b6eefe339bf3d9b77f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Tue, 7 Mar 2023 17:57:51 +0100 Subject: [PATCH] runformat --- test/cfg/qt.cpp | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/test/cfg/qt.cpp b/test/cfg/qt.cpp index ce9886c2e..4e8212a8f 100644 --- a/test/cfg/qt.cpp +++ b/test/cfg/qt.cpp @@ -501,7 +501,7 @@ namespace { private slots: void foo(); }; - void Fred::foo() { } + void Fred::foo() {} // bitfields14 class X { @@ -512,8 +512,12 @@ namespace { class Counter1 : public QObject { Q_OBJECT public: - Counter1() { m_value = 0; } - int value() const { return m_value; } + Counter1() { + m_value = 0; + } + int value() const { + return m_value; + } public slots: void setValue(int value); signals: @@ -531,8 +535,12 @@ namespace { class Counter2 : public QObject { Q_OBJECT public: - Counter2() { m_value = 0; } - int value() const { return m_value; } + Counter2() { + m_value = 0; + } + int value() const { + return m_value; + } public Q_SLOTS: void setValue(int value); Q_SIGNALS: