summaryrefslogtreecommitdiff
path: root/Tests/QtAutogen/foo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/QtAutogen/foo.cpp')
-rw-r--r--Tests/QtAutogen/foo.cpp14
1 files changed, 8 insertions, 6 deletions
diff --git a/Tests/QtAutogen/foo.cpp b/Tests/QtAutogen/foo.cpp
index 699ba094b2..23ecc30c76 100644
--- a/Tests/QtAutogen/foo.cpp
+++ b/Tests/QtAutogen/foo.cpp
@@ -18,18 +18,20 @@
class FooFoo : public QObject
{
Q_OBJECT
- public:
- FooFoo():QObject() {}
- public slots:
- int getValue() const { return 12; }
+public:
+ FooFoo()
+ : QObject()
+ {
+ }
+public slots:
+ int getValue() const { return 12; }
};
Foo::Foo()
-:QObject()
+ : QObject()
{
}
-
void Foo::doFoo()
{
FooFoo ff;