diff options
author | Thiago Macieira <thiago.macieira@nokia.com> | 2009-07-27 21:47:03 +0200 |
---|---|---|
committer | Thiago Macieira <thiago.macieira@nokia.com> | 2009-08-03 14:59:42 +0200 |
commit | d0457b70e33f1a090a91b0037e9254a0e14b8427 (patch) | |
tree | 2984b2db2129ba8cfefeac46d246a4a335b92150 /src/plugins/cpptools/cpptoolseditorsupport.cpp | |
parent | 88549a4b1dbbb16c7d63f176fd870ec8bdb61477 (diff) | |
download | qt-creator-d0457b70e33f1a090a91b0037e9254a0e14b8427.tar.gz |
Compile the C++ parser library with Sun CC 5.9.
Things you mustn't do:
1) end an enum with a comma
2) #include <cxxxx> and not use std::
3) use anonymous structures
All three things are invalid C++. Anonymous structures inside
anonymous unions are allowed by GCC, but that doesn't mean it's valid.
Diffstat (limited to 'src/plugins/cpptools/cpptoolseditorsupport.cpp')
-rw-r--r-- | src/plugins/cpptools/cpptoolseditorsupport.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/cpptools/cpptoolseditorsupport.cpp b/src/plugins/cpptools/cpptoolseditorsupport.cpp index c575b2e050..d83d159da1 100644 --- a/src/plugins/cpptools/cpptoolseditorsupport.cpp +++ b/src/plugins/cpptools/cpptoolseditorsupport.cpp @@ -211,7 +211,7 @@ protected: unsigned line, col; getTokenStartPosition(index, &line, &col); QTextCursor tc = _textCursor; - tc.setPosition(tc.document()->findBlockByNumber(line - 1).position() + col + tk.length - 1); + tc.setPosition(tc.document()->findBlockByNumber(line - 1).position() + col + tk.f.length - 1); return tc; } @@ -284,7 +284,7 @@ QTextCursor QuickFixOperation::cursor(unsigned index) const getTokenStartPosition(index, &line, &col); QTextCursor tc = _textCursor; tc.setPosition(tc.document()->findBlockByNumber(line - 1).position() + col - 1); - tc.setPosition(tc.position() + tk.length, QTextCursor::KeepAnchor); + tc.setPosition(tc.position() + tk.f.length, QTextCursor::KeepAnchor); return tc; } @@ -304,7 +304,7 @@ QTextCursor QuickFixOperation::moveAtEndOfToken(unsigned index) const unsigned line, col; getTokenStartPosition(index, &line, &col); QTextCursor tc = _textCursor; - tc.setPosition(tc.document()->findBlockByNumber(line - 1).position() + col + tk.length - 1); + tc.setPosition(tc.document()->findBlockByNumber(line - 1).position() + col + tk.f.length - 1); return tc; } |