diff options
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; }; |