diff options
author | Jiang Jiang <jiang.jiang@nokia.com> | 2011-05-11 10:13:01 (GMT) |
---|---|---|
committer | Jiang Jiang <jiang.jiang@nokia.com> | 2011-05-11 12:32:02 (GMT) |
commit | 5eba82b752e85a5d6cb3a893214ed2646d75f362 (patch) | |
tree | 68470935e37155b5f1cef258043de8d0ee08e371 /src/gui/text/qtextcursor.h | |
parent | 360c5f2c39a39c2a8296f21e6f5f577367610853 (diff) | |
download | Qt-5eba82b752e85a5d6cb3a893214ed2646d75f362.zip Qt-5eba82b752e85a5d6cb3a893214ed2646d75f362.tar.gz Qt-5eba82b752e85a5d6cb3a893214ed2646d75f362.tar.bz2 |
Move QTextCursor::MoveStyle to Qt namespace
We cannot use QTextCursor::MoveStyle enums in QTextLine because
QTextCursor is not a QObject, while referring to that enum in
Q_PROPERTY requires it to be. That's why we need to move the
enums in Qt namespace.
Reviewed-by: David Boddie
Diffstat (limited to 'src/gui/text/qtextcursor.h')
-rw-r--r-- | src/gui/text/qtextcursor.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/gui/text/qtextcursor.h b/src/gui/text/qtextcursor.h index 9e4c0b8..4eaeb41 100644 --- a/src/gui/text/qtextcursor.h +++ b/src/gui/text/qtextcursor.h @@ -86,10 +86,6 @@ public: MoveAnchor, KeepAnchor }; - enum MoveStyle { - Logical, - Visual - }; void setPosition(int pos, MoveMode mode = MoveAnchor); int position() const; |