summaryrefslogtreecommitdiff
Side-by-side diff
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--core/apps/textedit/textedit.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/core/apps/textedit/textedit.cpp b/core/apps/textedit/textedit.cpp
index 019ffee..197b28b 100644
--- a/core/apps/textedit/textedit.cpp
+++ b/core/apps/textedit/textedit.cpp
@@ -534,5 +534,5 @@ void TextEdit::newFileOpen()
if( fileName != "Unnamed" || fileName != "Empty Text" ) {
currentFileName = fileName;
-// qDebug("please open "+currentFileName);
+ qDebug("please open "+currentFileName);
openFile(fileName );
}
@@ -634,4 +634,6 @@ void TextEdit::openFile( const QString &f )
nf.setFile(f);
currentFileName=f;
+ QFileInfo fi( currentFileName);
+ nf.setName(fi.baseName());
qDebug("openFile string"+currentFileName);