summaryrefslogtreecommitdiff
authorllornkcor <llornkcor>2002-02-19 01:29:58 (UTC)
committer llornkcor <llornkcor>2002-02-19 01:29:58 (UTC)
commit994691c1659fdac4980b0319aa8fab1c98ef3c73 (patch) (unidiff)
treea7fa94deb3cbd4c7cda17f184eed634bbc0caac4
parentfe66103c21d3337bb6c7fc7ad112cbdedd255d67 (diff)
downloadopie-994691c1659fdac4980b0319aa8fab1c98ef3c73.zip
opie-994691c1659fdac4980b0319aa8fab1c98ef3c73.tar.gz
opie-994691c1659fdac4980b0319aa8fab1c98ef3c73.tar.bz2
bug- saveas
Diffstat (more/less context) (ignore 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
@@ -532,9 +532,9 @@ void TextEdit::newFileOpen()
532 fileTemp.right( fileTemp.length()-5); 532 fileTemp.right( fileTemp.length()-5);
533 QString fileName = fileTemp; 533 QString fileName = fileTemp;
534 if( fileName != "Unnamed" || fileName != "Empty Text" ) { 534 if( fileName != "Unnamed" || fileName != "Empty Text" ) {
535 currentFileName = fileName; 535 currentFileName = fileName;
536// qDebug("please open "+currentFileName); 536 qDebug("please open "+currentFileName);
537 openFile(fileName ); 537 openFile(fileName );
538 } 538 }
539 } 539 }
540 } 540 }
@@ -632,8 +632,10 @@ void TextEdit::openFile( const QString &f )
632 DocLnk nf; 632 DocLnk nf;
633 nf.setType("text/plain"); 633 nf.setType("text/plain");
634 nf.setFile(f); 634 nf.setFile(f);
635 currentFileName=f; 635 currentFileName=f;
636 QFileInfo fi( currentFileName);
637 nf.setName(fi.baseName());
636 qDebug("openFile string"+currentFileName); 638 qDebug("openFile string"+currentFileName);
637 639
638 openFile(nf); 640 openFile(nf);
639 showEditTools(); 641 showEditTools();