author | llornkcor <llornkcor> | 2002-02-19 01:16:12 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-02-19 01:16:12 (UTC) |
commit | 05ed9bc7fbd667815e2e3ec608773d19bfd294d2 (patch) (side-by-side diff) | |
tree | 8e32c372231178e96848ba2267195525dd49aaef | |
parent | 2308c4db692821721bbe82f93fd60f275f4cccdc (diff) | |
download | opie-05ed9bc7fbd667815e2e3ec608773d19bfd294d2.zip opie-05ed9bc7fbd667815e2e3ec608773d19bfd294d2.tar.gz opie-05ed9bc7fbd667815e2e3ec608773d19bfd294d2.tar.bz2 |
fixed bug in save (unprompted) saving a new unnamed file...
-rw-r--r-- | core/apps/textedit/textedit.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/core/apps/textedit/textedit.cpp b/core/apps/textedit/textedit.cpp index e41c69d..2f59ede 100644 --- a/core/apps/textedit/textedit.cpp +++ b/core/apps/textedit/textedit.cpp @@ -645,100 +645,103 @@ void TextEdit::openFile( const QString &f ) updateCaption( name ); } void TextEdit::openFile( const DocLnk &f ) { // clear(); bFromDocView = TRUE; FileManager fm; QString txt; currentFileName=f.name(); qDebug("openFile doclnk " + currentFileName); if ( !fm.loadFile( f, txt ) ) { // ####### could be a new file qDebug( "Cannot open file" ); //return; } fileNew(); if ( doc ) delete doc; doc = new DocLnk(f); editor->setText(txt); editor->setEdited( false); qDebug("openFile doclnk "+currentFileName); doc->setName(currentFileName); updateCaption(); } void TextEdit::showEditTools() { // if ( !doc ) // close(); // clear(); fileSelector->hide(); menu->show(); editBar->show(); if ( searchVisible ) searchBar->show(); // updateCaption(); editorStack->raiseWidget( editor ); setWState (WState_Reserved1 ); } /*! unprompted save */ bool TextEdit::save() { - qDebug("saveFile "+currentFileName); - + QString file = doc->file(); + QString name= doc->name(); QString rt = editor->text(); - doc->setName( currentFileName); + currentFileName= file ; + qDebug("saveFile "+currentFileName); + + doc->setName( name); FileManager fm; if ( !fm.saveFile( *doc, rt ) ) { return false; } // if(doc) // delete doc; // doc = 0; editor->setEdited( false ); return true; } /*! prompted save */ bool TextEdit::saveAs() { qDebug("saveAsFile "+currentFileName); // case of nothing to save... /// there's always something to save // if ( !doc )//|| !bFromDocView) // { // qDebug("no doc"); // return true; // } if ( !editor->edited() ) { delete doc; doc = 0; return true; } QString rt = editor->text(); qDebug(currentFileName); if( currentFileName.isEmpty() || currentFileName == "Unnamed") { qDebug("do silly TT filename thing"); if ( doc->name().isEmpty() ) { QString pt = rt.simplifyWhiteSpace(); int i = pt.find( ' ' ); QString docname = pt; if ( i > 0 ) docname = pt.left( i ); // remove "." at the beginning while( docname.startsWith( "." ) ) docname = docname.mid( 1 ); docname.replace( QRegExp("/"), "_" ); // cut the length. filenames longer than that don't make sense and something goes wrong when they get too long. if ( docname.length() > 40 ) docname = docname.left(40); if ( docname.isEmpty() ) |