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/qtextlayout.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/qtextlayout.h')
-rw-r--r-- | src/gui/text/qtextlayout.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/text/qtextlayout.h b/src/gui/text/qtextlayout.h index 8fe488a..89fbfb2 100644 --- a/src/gui/text/qtextlayout.h +++ b/src/gui/text/qtextlayout.h @@ -137,8 +137,8 @@ public: void setCacheEnabled(bool enable); bool cacheEnabled() const; - void setCursorMoveStyle(QTextCursor::MoveStyle style); - QTextCursor::MoveStyle cursorMoveStyle() const; + void setCursorMoveStyle(Qt::CursorMoveStyle style); + Qt::CursorMoveStyle cursorMoveStyle() const; void beginLayout(); void endLayout(); |