summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Blasche <alexander.blasche@digia.com>2014-02-10 13:49:27 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-02-11 10:11:20 +0100
commit4320794b5e9f19e660ccaaa1f8ac469b26c4f284 (patch)
treea49f6e47f14c83fed507e2c913067f3fa7505808
parent85e9ce386d2d931617f3c0d76acd4ca4165cb81d (diff)
Explicitly declare the parameter type of QBluetoothServer::error().
The connect signal has trouble deciding on the error type. Change-Id: I6efde7629af832f394b2ae9ba5a266e281a4a1aa Reviewed-by: Aaron McCarthy <mccarthy.aaron@gmail.com>
-rw-r--r--src/bluetooth/qbluetoothserver.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bluetooth/qbluetoothserver.h b/src/bluetooth/qbluetoothserver.h
index d4468cb6..61573843 100644
--- a/src/bluetooth/qbluetoothserver.h
+++ b/src/bluetooth/qbluetoothserver.h
@@ -97,7 +97,7 @@ public:
Q_SIGNALS:
void newConnection();
- void error(Error);
+ void error(QBluetoothServer::Error error);
protected:
QBluetoothServerPrivate *d_ptr;