aboutsummaryrefslogtreecommitdiffstats
path: root/src/libs/qmldebug
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@qt.io>2019-01-08 16:05:57 +0100
committerOrgad Shaneh <orgads@gmail.com>2019-01-10 09:04:46 +0000
commitc6a6c12f052b05762b92775e1f19b546a3788d8e (patch)
tree7d565848e259ded0cc8b5a27296d78acbb732ae8 /src/libs/qmldebug
parent4c191572044d4483f09b3b8d0f76ef164bd8f225 (diff)
Canonicalize some includes
Our canonical style is #include <utils/fileutils.h> rather than #include "utils/fileutils.h" Which makes sense, as such headers will never be found in the local directory. Change-Id: I4ca46e90d6c4d19d4b1f235f4c79caad864ef222 Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'src/libs/qmldebug')
-rw-r--r--src/libs/qmldebug/qmlenginecontrolclient.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/qmldebug/qmlenginecontrolclient.cpp b/src/libs/qmldebug/qmlenginecontrolclient.cpp
index 2bc1d54302..cddcc13b0e 100644
--- a/src/libs/qmldebug/qmlenginecontrolclient.cpp
+++ b/src/libs/qmldebug/qmlenginecontrolclient.cpp
@@ -25,7 +25,7 @@
#include "qmlenginecontrolclient.h"
#include "qpacketprotocol.h"
-#include "utils/qtcassert.h"
+#include <utils/qtcassert.h>
#include <functional>