summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason McDonald <jason.mcdonald@nokia.com>2009-06-16 20:53:04 +1000
committerJason McDonald <jason.mcdonald@nokia.com>2009-06-16 20:53:04 +1000
commit7f00209fe9face275e068d889973aa943cdfcb00 (patch)
tree4bcc9556aea97602387b46dbd8713726f5a3e4b1
parent64b1e9b360045b6ed2794d17b4fd07bc2ca8a47e (diff)
Make the codeeditor example compile on Windows.
Local includes should use the double-quote form of #include rather than the angle-bracket form. Reviewed-by: Trust Me
-rw-r--r--examples/widgets/codeeditor/codeeditor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/widgets/codeeditor/codeeditor.cpp b/examples/widgets/codeeditor/codeeditor.cpp
index b855c7a8cf..615f39fb18 100644
--- a/examples/widgets/codeeditor/codeeditor.cpp
+++ b/examples/widgets/codeeditor/codeeditor.cpp
@@ -41,7 +41,7 @@
#include <QtGui>
-#include <codeeditor.h>
+#include "codeeditor.h"
//![constructor]