summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSergio Ahumada <sergio.ahumada@digia.com>2013-03-13 13:47:01 +0100
committerOswald Buddenhagen <oswald.buddenhagen@digia.com>2013-03-13 14:16:59 +0100
commitd05da2c8a6c2a794e9f4372f5b29112b85208f97 (patch)
tree68a91b686d4b5609b12f18e5b4b0a483bfe396e5
parentb2e4fbd2c8c98ac7f0069da7b79d57978d1d8076 (diff)
Fix signals usage caught by tst_Headers
Header contains `signals' - use `Q_SIGNALS' instead Change-Id: Ia31a7268c5cde51425555b8e47302e904e6b2e40 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
-rw-r--r--src/bluetooth/qbluetoothdevicediscoveryagent.h2
-rw-r--r--src/bluetooth/qbluetoothservicediscoveryagent.h2
-rw-r--r--src/bluetooth/qbluetoothtransfermanager.h2
-rw-r--r--src/bluetooth/ql2capserver.h2
-rw-r--r--src/bluetooth/qrfcommserver.h2
-rw-r--r--src/nfc/qdeclarativendefrecord.h2
6 files changed, 6 insertions, 6 deletions
diff --git a/src/bluetooth/qbluetoothdevicediscoveryagent.h b/src/bluetooth/qbluetoothdevicediscoveryagent.h
index 4e12b88e..b03b0da5 100644
--- a/src/bluetooth/qbluetoothdevicediscoveryagent.h
+++ b/src/bluetooth/qbluetoothdevicediscoveryagent.h
@@ -89,7 +89,7 @@ public slots:
void start();
void stop();
-signals:
+Q_SIGNALS:
void deviceDiscovered(const QBluetoothDeviceInfo &info);
void finished();
void error(QBluetoothDeviceDiscoveryAgent::Error error);
diff --git a/src/bluetooth/qbluetoothservicediscoveryagent.h b/src/bluetooth/qbluetoothservicediscoveryagent.h
index 93fcdbc9..2d212dbb 100644
--- a/src/bluetooth/qbluetoothservicediscoveryagent.h
+++ b/src/bluetooth/qbluetoothservicediscoveryagent.h
@@ -91,7 +91,7 @@ public slots:
void stop();
void clear();
-signals:
+Q_SIGNALS:
void serviceDiscovered(const QBluetoothServiceInfo &info);
void finished();
void canceled();
diff --git a/src/bluetooth/qbluetoothtransfermanager.h b/src/bluetooth/qbluetoothtransfermanager.h
index 3407f48d..8a113dad 100644
--- a/src/bluetooth/qbluetoothtransfermanager.h
+++ b/src/bluetooth/qbluetoothtransfermanager.h
@@ -70,7 +70,7 @@ public:
QBluetoothTransferReply *put(const QBluetoothTransferRequest &request, QIODevice *data);
-signals:
+Q_SIGNALS:
void finished(QBluetoothTransferReply *reply);
};
diff --git a/src/bluetooth/ql2capserver.h b/src/bluetooth/ql2capserver.h
index 784c92e8..8f61589a 100644
--- a/src/bluetooth/ql2capserver.h
+++ b/src/bluetooth/ql2capserver.h
@@ -80,7 +80,7 @@ public:
void setSecurityFlags(QBluetooth::SecurityFlags security);
QBluetooth::SecurityFlags securityFlags() const;
-signals:
+Q_SIGNALS:
void newConnection();
protected:
diff --git a/src/bluetooth/qrfcommserver.h b/src/bluetooth/qrfcommserver.h
index 4a382e6b..8fe7d67e 100644
--- a/src/bluetooth/qrfcommserver.h
+++ b/src/bluetooth/qrfcommserver.h
@@ -80,7 +80,7 @@ public:
void setSecurityFlags(QBluetooth::SecurityFlags security);
QBluetooth::SecurityFlags securityFlags() const;
-signals:
+Q_SIGNALS:
void newConnection();
protected:
diff --git a/src/nfc/qdeclarativendefrecord.h b/src/nfc/qdeclarativendefrecord.h
index 7e2c488a..783d5eb3 100644
--- a/src/nfc/qdeclarativendefrecord.h
+++ b/src/nfc/qdeclarativendefrecord.h
@@ -68,7 +68,7 @@ public:
QNdefRecord record() const;
void setRecord(const QNdefRecord &record);
-signals:
+Q_SIGNALS:
void recordTypeChanged();
private: