diff options
author | Oswald Buddenhagen <oswald.buddenhagen@nokia.com> | 2009-12-03 17:49:33 (GMT) |
---|---|---|
committer | Oswald Buddenhagen <oswald.buddenhagen@nokia.com> | 2009-12-03 18:19:52 (GMT) |
commit | 4621061e8c32e234a0d7688e226e92d87172f99b (patch) | |
tree | 8b1a7d6a81070caa45dcf6434a07f8f4176d2efe /src/declarative/graphicsitems/qmlgraphicstextedit_p.h | |
parent | ab694f173485205e42f99fc775b4ea10765f517c (diff) | |
download | Qt-4621061e8c32e234a0d7688e226e92d87172f99b.zip Qt-4621061e8c32e234a0d7688e226e92d87172f99b.tar.gz Qt-4621061e8c32e234a0d7688e226e92d87172f99b.tar.bz2 |
fix includes
- include headers from own directory with ""
- include headers from own project without private/
- sort includes from most specific to most generic
- make headers self-contained
- some whitespace unification
no attempt was made at making the qt includes consistent regarding the
use of module names and forwarding headers.
no attempt was made at sorting includes.
Diffstat (limited to 'src/declarative/graphicsitems/qmlgraphicstextedit_p.h')
-rw-r--r-- | src/declarative/graphicsitems/qmlgraphicstextedit_p.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/declarative/graphicsitems/qmlgraphicstextedit_p.h b/src/declarative/graphicsitems/qmlgraphicstextedit_p.h index 1ddfa6b..0fe09f3 100644 --- a/src/declarative/graphicsitems/qmlgraphicstextedit_p.h +++ b/src/declarative/graphicsitems/qmlgraphicstextedit_p.h @@ -42,15 +42,14 @@ #ifndef QMLGRAPHICSTEXTEDIT_H #define QMLGRAPHICSTEXTEDIT_H -#include <private/qmlgraphicstext_p.h> -#include <private/qmlgraphicspainteditem_p.h> +#include "qmlgraphicstext_p.h" +#include "qmlgraphicspainteditem_p.h" #include <QtGui/qtextdocument.h> #include <QtGui/qtextoption.h> #include <QtGui/qtextcursor.h> #include <QtGui/qtextformat.h> - QT_BEGIN_HEADER QT_BEGIN_NAMESPACE |