changeset 98:f7efb59e99d9

Fixed bug that set file to modified after encoding change, even if it was not. git-svn-id: svn://svn.code.sf.net/p/universalindent/code/trunk@297 59b1889a-e5ac-428c-b0c7-476e01d41282
author thomas_-_s <thomas_-_s@59b1889a-e5ac-428c-b0c7-476e01d41282>
date Wed, 21 Mar 2007 21:18:18 +0000
parents ff51d96fecc8
children 0ad2ac0b8e15
files src/mainwindow.cpp
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/mainwindow.cpp	Wed Mar 21 21:17:45 2007 +0000
+++ b/src/mainwindow.cpp	Wed Mar 21 21:18:18 2007 +0000
@@ -1090,6 +1090,7 @@
             QApplication::restoreOverrideCursor();
             inSrcFile.close();
             txtedSourceCode->setText( fileContent );
+			txtedSourceCode->setModified(false);
         }
     }
 }