diff options
Diffstat (limited to 'Tests/QtAutogen/abc.cpp')
-rw-r--r-- | Tests/QtAutogen/abc.cpp | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/Tests/QtAutogen/abc.cpp b/Tests/QtAutogen/abc.cpp index 4bbc769..b19c2a1 100644 --- a/Tests/QtAutogen/abc.cpp +++ b/Tests/QtAutogen/abc.cpp @@ -11,7 +11,6 @@ See the License for more information. ============================================================================*/ - #include "abc.h" #include "abc_p.h" @@ -20,18 +19,20 @@ class PrintAbc : public QObject { Q_OBJECT - public: - PrintAbc():QObject() {} - public slots: - void print() const { printf("abc\n"); } +public: + PrintAbc() + : QObject() + { + } +public slots: + void print() const { printf("abc\n"); } }; Abc::Abc() -:QObject() + : QObject() { } - void Abc::doAbc() { PrintAbc pa; |