diff options
Diffstat (limited to 'ktouch/src/ktouchlectureeditor.cpp')
-rw-r--r-- | ktouch/src/ktouchlectureeditor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ktouch/src/ktouchlectureeditor.cpp b/ktouch/src/ktouchlectureeditor.cpp index 36a340d1..e274732b 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=' '; // tqreplace tabs with spaces + if (c=='\t') c=' '; // replace tabs with spaces if (c=='\n') { lines.append(currentLine); currentLine = ""; |