summaryrefslogtreecommitdiffstats
path: root/kate/part/katecursor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kate/part/katecursor.cpp')
-rw-r--r--kate/part/katecursor.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kate/part/katecursor.cpp b/kate/part/katecursor.cpp
index a67b7e475..dcd7c38bf 100644
--- a/kate/part/katecursor.cpp
+++ b/kate/part/katecursor.cpp
@@ -136,7 +136,7 @@ bool KateDocCursor::moveBackward(uint nbChar)
}
}
-bool KateDocCursor::insertText(const QString& s)
+bool KateDocCursor::insertText(const TQString& s)
{
return m_doc->insertText(line(), col(), s);
}
@@ -152,7 +152,7 @@ bool KateDocCursor::removeText(uint nbChar)
(uint)endCursor.line(), (uint)endCursor.col());
}
-QChar KateDocCursor::currentChar() const
+TQChar KateDocCursor::currentChar() const
{
return m_doc->plainKateTextLine(line())->getChar(col());
}