diff options
Diffstat (limited to 'Tests/Qt4Targets/mywrapobject.h')
-rw-r--r-- | Tests/Qt4Targets/mywrapobject.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Tests/Qt4Targets/mywrapobject.h b/Tests/Qt4Targets/mywrapobject.h index de23540..5d4e52a 100644 --- a/Tests/Qt4Targets/mywrapobject.h +++ b/Tests/Qt4Targets/mywrapobject.h @@ -11,7 +11,10 @@ class MyWrapObject : public QObject, MyInterface Q_OBJECT Q_INTERFACES(MyInterface) public: - explicit MyWrapObject(QObject *parent = 0) : QObject(parent) { } + explicit MyWrapObject(QObject* parent = 0) + : QObject(parent) + { + } }; #endif |