diff options
author | Jason McDonald <jason.mcdonald@nokia.com> | 2009-06-16 10:53:04 (GMT) |
---|---|---|
committer | Jason McDonald <jason.mcdonald@nokia.com> | 2009-06-16 15:00:55 (GMT) |
commit | cf05e19fd0a28a5423d76a804ca02261e3cf9cb7 (patch) | |
tree | 06e2a506babe6cbaa2dd8a2d1be62d9d7f2d3e0d | |
parent | 7e3c1189b555b7775630c4ba3ea4f60e056d7ef6 (diff) | |
download | Qt-cf05e19fd0a28a5423d76a804ca02261e3cf9cb7.zip Qt-cf05e19fd0a28a5423d76a804ca02261e3cf9cb7.tar.gz Qt-cf05e19fd0a28a5423d76a804ca02261e3cf9cb7.tar.bz2 |
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
(cherry picked from commit 7f00209fe9face275e068d889973aa943cdfcb00)
-rw-r--r-- | examples/widgets/codeeditor/codeeditor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/widgets/codeeditor/codeeditor.cpp b/examples/widgets/codeeditor/codeeditor.cpp index e113a24..b4f984a 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] |