diff options
Diffstat (limited to 'Tests/QtAutogen/blub.cpp')
-rw-r--r-- | Tests/QtAutogen/blub.cpp | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/Tests/QtAutogen/blub.cpp b/Tests/QtAutogen/blub.cpp index bd53972..bbebf08 100644 --- a/Tests/QtAutogen/blub.cpp +++ b/Tests/QtAutogen/blub.cpp @@ -18,17 +18,19 @@ class BlubBlub : public QObject { Q_OBJECT - public: - BlubBlub():QObject() {} - public slots: - int getValue() const { return 13; } +public: + BlubBlub() + : QObject() + { + } +public slots: + int getValue() const { return 13; } }; Blub::Blub() { } - void Blub::blubber() { BlubBlub bb; |