summaryrefslogtreecommitdiffstats
path: root/ktouch/src/ktouchlectureeditor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ktouch/src/ktouchlectureeditor.cpp')
-rw-r--r--ktouch/src/ktouchlectureeditor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ktouch/src/ktouchlectureeditor.cpp b/ktouch/src/ktouchlectureeditor.cpp
index e274732b..36a340d1 100644
--- a/ktouch/src/ktouchlectureeditor.cpp
+++ b/ktouch/src/ktouchlectureeditor.cpp
@@ -330,7 +330,7 @@ void KTouchLectureEditor::storeCurrentLevel() {
TQString currentLine;
for (unsigned int i=0; i<text.length(); ++i) {
TQChar c = text[i];
- if (c=='\t') c=' '; // replace tabs with spaces
+ if (c=='\t') c=' '; // tqreplace tabs with spaces
if (c=='\n') {
lines.append(currentLine);
currentLine = "";