diff options
Diffstat (limited to 'Tests/Qt4Targets/main_gen_test.cpp')
-rw-r--r-- | Tests/Qt4Targets/main_gen_test.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Tests/Qt4Targets/main_gen_test.cpp b/Tests/Qt4Targets/main_gen_test.cpp index 984424b..1ea390b 100644 --- a/Tests/Qt4Targets/main_gen_test.cpp +++ b/Tests/Qt4Targets/main_gen_test.cpp @@ -8,10 +8,13 @@ class MyObject : public QObject, MyInterface Q_OBJECT Q_INTERFACES(MyInterface) public: - explicit MyObject(QObject *parent = 0) : QObject(parent) { } + explicit MyObject(QObject* parent = 0) + : QObject(parent) + { + } }; -int main(int argc, char **argv) +int main(int argc, char** argv) { MyObject mo; mo.objectName(); |