diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:54:04 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:54:04 +0000 |
commit | dc6b8e72fed2586239e3514819238c520636c9d9 (patch) | |
tree | 88b200df0a0b7fab9d6f147596173556f1ed9a13 /quanta/parts/kafka/cursors.h | |
parent | 6927d4436e54551917f600b706a8d6109e49de1c (diff) | |
download | tdewebdev-dc6b8e72fed2586239e3514819238c520636c9d9.tar.gz tdewebdev-dc6b8e72fed2586239e3514819238c520636c9d9.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdewebdev@1157656 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'quanta/parts/kafka/cursors.h')
-rw-r--r-- | quanta/parts/kafka/cursors.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/quanta/parts/kafka/cursors.h b/quanta/parts/kafka/cursors.h index 22eea7b1..6ff94439 100644 --- a/quanta/parts/kafka/cursors.h +++ b/quanta/parts/kafka/cursors.h @@ -85,13 +85,13 @@ public: * @return Returns the location of the Node where the selection begin (and where the cursor is if * m_cursorAtSelectionStart). */ - QValueList<int>& cursorNode() {return m_cursorNode;} + TQValueList<int>& cursorNode() {return m_cursorNode;} /** * @param cursorNode Set the location of the Node where the selection begin (and where the cursor is if * m_cursorAtSelectionStart) */ - void setCursorNode(QValueList<int> cursorNode) {m_cursorNode = cursorNode;} + void setCursorNode(TQValueList<int> cursorNode) {m_cursorNode = cursorNode;} /** * @return Returns the offset of the cursor where the selection begin (and where the cursor is if @@ -121,13 +121,13 @@ public: * selection ends. * Empty if this instance only carry the cursor coordinates. */ - QValueList<int>& cursorNodeEndSel() {return m_cursorNodeEndSel;} + TQValueList<int>& cursorNodeEndSel() {return m_cursorNodeEndSel;} /** * @param cursorNodeEndSel Set the location of the end selection Node where the * selection ends. */ - void setCursorNodeEndSel(QValueList<int> cursorNodeEndSel) + void setCursorNodeEndSel(TQValueList<int> cursorNodeEndSel) {m_cursorNodeEndSel = cursorNodeEndSel;} /** @@ -142,7 +142,7 @@ public: {m_cursorOffsetEndSel = cursorOffsetEndSel;} private: - QValueList<int> m_cursorNode, m_cursorNodeEndSel; + TQValueList<int> m_cursorNode, m_cursorNodeEndSel; int m_cursorOffset, m_cursorOffsetEndSel; bool m_cursorAtSelectionStart; }; |