summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Blasche <alexander.blasche@digia.com>2014-05-23 10:46:38 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-05-23 14:05:53 +0200
commitaa9f0dfbb302876a874f9d928ccee0fbfcf91493 (patch)
tree9c31752dfa444ffa8af18c28d0e208c4c323f1bf
parenteaf88aa2c5b7e28a28d8f863a0bac408260d1191 (diff)
Use proper include syntax for system headers
They can be found in /usr/include Change-Id: I734fd72c52d2b78aca6388d79e59c973e8d99a73 Reviewed-by: Kai Koehne <kai.koehne@digia.com>
-rw-r--r--src/bluetooth/qbluetoothservicediscoveryagent_bluez.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bluetooth/qbluetoothservicediscoveryagent_bluez.cpp b/src/bluetooth/qbluetoothservicediscoveryagent_bluez.cpp
index 6d3e4c96..5804d8b3 100644
--- a/src/bluetooth/qbluetoothservicediscoveryagent_bluez.cpp
+++ b/src/bluetooth/qbluetoothservicediscoveryagent_bluez.cpp
@@ -49,9 +49,9 @@
#include "bluez/objectmanager_p.h"
#include "bluez/adapter1_bluez5_p.h"
-#include "bluetooth/bluetooth.h"
-#include "bluetooth/sdp.h"
-#include "bluetooth/sdp_lib.h"
+#include <bluetooth/bluetooth.h>
+#include <bluetooth/sdp.h>
+#include <bluetooth/sdp_lib.h>
#include <QtCore/QLoggingCategory>
#include <QtDBus/QDBusPendingCallWatcher>