Add Q_OBJECT macros

Krazy complained about missing Q_OBJECT macros. Fix them.
This commit is contained in:
Tobias Hunger
2010-10-30 21:17:35 +02:00
parent c8cf974f93
commit af0413ec1e
3 changed files with 6 additions and 0 deletions

View File

@@ -104,6 +104,8 @@ typedef QList<Module> Modules;
class ModulesHandler : public QObject class ModulesHandler : public QObject
{ {
Q_OBJECT
public: public:
explicit ModulesHandler(DebuggerEngine *engine); explicit ModulesHandler(DebuggerEngine *engine);

View File

@@ -39,6 +39,8 @@ namespace Internal {
class InspectorSettings : public QObject class InspectorSettings : public QObject
{ {
Q_OBJECT
public: public:
InspectorSettings(QObject *parent = 0); InspectorSettings(QObject *parent = 0);
~InspectorSettings(); ~InspectorSettings();

View File

@@ -69,6 +69,8 @@ struct AbstractGeneratedFileInfo
class AbstractMobileApp : public QObject class AbstractMobileApp : public QObject
{ {
Q_OBJECT
public: public:
enum ScreenOrientation { enum ScreenOrientation {
ScreenOrientationLockLandscape, ScreenOrientationLockLandscape,