aboutsummaryrefslogtreecommitdiffstats
path: root/src/qmldebug
diff options
context:
space:
mode:
authorYuhang Zhao <2546789017@qq.com>2022-07-15 13:48:58 +0800
committerYuhang Zhao <2546789017@qq.com>2022-07-19 14:39:02 +0800
commit0923817ddadd35e43bc09449436e282f834d566f (patch)
tree0da6450e0e8decfdc6ad58946ec1723c629f61a7 /src/qmldebug
parent99a35ac26a6523252bb041ea00af6ff0b8c237c2 (diff)
Remove Qt key words from header files
So that users can use QT_NO_KEYWORDS when linking against QtDeclarative, even if they are using private headers. Docs, examples and tools are not touched because it's not necessary. Pick-to: 6.4 Change-Id: Idc30797074aaa72576429ebdaaf915d7f5acf84e Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
Diffstat (limited to 'src/qmldebug')
-rw-r--r--src/qmldebug/qqmldebugclient_p.h2
-rw-r--r--src/qmldebug/qqmldebugconnection_p.h2
-rw-r--r--src/qmldebug/qqmldebugmessageclient_p.h2
-rw-r--r--src/qmldebug/qqmlenginecontrolclient_p.h2
-rw-r--r--src/qmldebug/qqmlenginedebugclient_p.h2
-rw-r--r--src/qmldebug/qqmlinspectorclient_p.h2
-rw-r--r--src/qmldebug/qqmlpreviewclient_p.h2
-rw-r--r--src/qmldebug/qqmlprofilerclient_p.h2
-rw-r--r--src/qmldebug/qv4debugclient_p.h2
9 files changed, 9 insertions, 9 deletions
diff --git a/src/qmldebug/qqmldebugclient_p.h b/src/qmldebug/qqmldebugclient_p.h
index db62c8fec3..2859696e49 100644
--- a/src/qmldebug/qqmldebugclient_p.h
+++ b/src/qmldebug/qqmldebugclient_p.h
@@ -41,7 +41,7 @@ public:
QQmlDebugConnection *connection() const;
-signals:
+Q_SIGNALS:
void stateChanged(State state);
protected:
diff --git a/src/qmldebug/qqmldebugconnection_p.h b/src/qmldebug/qqmldebugconnection_p.h
index 00c0cec948..7f6de3790c 100644
--- a/src/qmldebug/qqmldebugconnection_p.h
+++ b/src/qmldebug/qqmldebugconnection_p.h
@@ -50,7 +50,7 @@ public:
float serviceVersion(const QString &serviceName) const;
bool sendMessage(const QString &name, const QByteArray &message);
-signals:
+Q_SIGNALS:
void connected();
void disconnected();
void socketError(QAbstractSocket::SocketError socketError);
diff --git a/src/qmldebug/qqmldebugmessageclient_p.h b/src/qmldebug/qqmldebugmessageclient_p.h
index c3681ef564..928a8f4457 100644
--- a/src/qmldebug/qqmldebugmessageclient_p.h
+++ b/src/qmldebug/qqmldebugmessageclient_p.h
@@ -37,7 +37,7 @@ public:
virtual void messageReceived(const QByteArray &) override;
-signals:
+Q_SIGNALS:
void message(QtMsgType, const QString &, const QQmlDebugContextInfo &);
};
diff --git a/src/qmldebug/qqmlenginecontrolclient_p.h b/src/qmldebug/qqmlenginecontrolclient_p.h
index d9872f6ee0..3aad694542 100644
--- a/src/qmldebug/qqmlenginecontrolclient_p.h
+++ b/src/qmldebug/qqmlenginecontrolclient_p.h
@@ -32,7 +32,7 @@ public:
QList<int> blockedEngines() const;
-signals:
+Q_SIGNALS:
void engineAboutToBeAdded(int engineId, const QString &name);
void engineAdded(int engineId, const QString &name);
void engineAboutToBeRemoved(int engineId, const QString &name);
diff --git a/src/qmldebug/qqmlenginedebugclient_p.h b/src/qmldebug/qqmlenginedebugclient_p.h
index a4ae4a6e9f..48bc62f076 100644
--- a/src/qmldebug/qqmlenginedebugclient_p.h
+++ b/src/qmldebug/qqmlenginedebugclient_p.h
@@ -127,7 +127,7 @@ public:
QVariant resultExpr() const;
bool valid() const;
-signals:
+Q_SIGNALS:
void newObject(qint32 objectId);
void valueChanged(QByteArray,QVariant);
void result();
diff --git a/src/qmldebug/qqmlinspectorclient_p.h b/src/qmldebug/qqmlinspectorclient_p.h
index ff617dbaee..829ec8e9bf 100644
--- a/src/qmldebug/qqmlinspectorclient_p.h
+++ b/src/qmldebug/qqmlinspectorclient_p.h
@@ -37,7 +37,7 @@ public:
int moveObject(int childId, int newParentId);
int destroyObject(int objectId);
-signals:
+Q_SIGNALS:
void responseReceived(int requestId, bool result);
protected:
diff --git a/src/qmldebug/qqmlpreviewclient_p.h b/src/qmldebug/qqmlpreviewclient_p.h
index 435c722917..0ce9619e35 100644
--- a/src/qmldebug/qqmlpreviewclient_p.h
+++ b/src/qmldebug/qqmlpreviewclient_p.h
@@ -62,7 +62,7 @@ public:
void triggerRerun();
void triggerZoom(float factor);
-signals:
+Q_SIGNALS:
void request(const QString &path);
void error(const QString &message);
void fps(const FpsInfo &info);
diff --git a/src/qmldebug/qqmlprofilerclient_p.h b/src/qmldebug/qqmlprofilerclient_p.h
index f5d5d0b758..37978f11f4 100644
--- a/src/qmldebug/qqmlprofilerclient_p.h
+++ b/src/qmldebug/qqmlprofilerclient_p.h
@@ -52,7 +52,7 @@ protected:
QQmlProfilerClient(QQmlProfilerClientPrivate &dd);
void onStateChanged(State status);
-signals:
+Q_SIGNALS:
void complete(qint64 maximumTime);
void traceFinished(qint64 timestamp, const QList<int> &engineIds);
void traceStarted(qint64 timestamp, const QList<int> &engineIds);
diff --git a/src/qmldebug/qv4debugclient_p.h b/src/qmldebug/qv4debugclient_p.h
index f076641a68..4e480703ac 100644
--- a/src/qmldebug/qv4debugclient_p.h
+++ b/src/qmldebug/qv4debugclient_p.h
@@ -72,7 +72,7 @@ public:
protected:
void messageReceived(const QByteArray &data) override;
-signals:
+Q_SIGNALS:
void connected();
void interrupted();
void result();