forked from qt-creator/qt-creator
Add Q_OBJECT macros
Krazy complained about missing Q_OBJECT macros. Fix them.
This commit is contained in:
@@ -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);
|
||||||
|
|
||||||
|
|||||||
@@ -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();
|
||||||
|
|||||||
@@ -69,6 +69,8 @@ struct AbstractGeneratedFileInfo
|
|||||||
|
|
||||||
class AbstractMobileApp : public QObject
|
class AbstractMobileApp : public QObject
|
||||||
{
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
|
||||||
public:
|
public:
|
||||||
enum ScreenOrientation {
|
enum ScreenOrientation {
|
||||||
ScreenOrientationLockLandscape,
|
ScreenOrientationLockLandscape,
|
||||||
|
|||||||
Reference in New Issue
Block a user