-rw-r--r-- | core/apps/textedit/textedit.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/core/apps/textedit/textedit.cpp b/core/apps/textedit/textedit.cpp index af427ac..bd7cfb6 100644 --- a/core/apps/textedit/textedit.cpp +++ b/core/apps/textedit/textedit.cpp @@ -555,4 +555,11 @@ void TextEdit::setWordWrap(bool y) { bool state = editor->edited(); + QString captionStr = caption(); + bool b1 = edited1; + bool b2 = edited; + editor->setWordWrap(y ? QMultiLineEdit::WidgetWidth : QMultiLineEdit::NoWrap ); editor->setEdited( state ); + edited1=b1; + edited=b2; + setCaption(captionStr); } @@ -686,3 +693,3 @@ void TextEdit::openDotFile( const QString &f ) { while ( !t.atEnd()) { - txt+=t.readLine(); + txt+=t.readLine()+"\n"; } |