author | llornkcor <llornkcor> | 2002-11-09 00:55:56 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-11-09 00:55:56 (UTC) |
commit | 84e685e0c2922899dcdd69cfc23ecbccbf855af4 (patch) (side-by-side diff) | |
tree | 1a3d34d261c5ebc4982d3b9276e63ebae57d8d39 | |
parent | 028753a6a3857cdcf7476e537de1cd5c471424c4 (diff) | |
download | opie-84e685e0c2922899dcdd69cfc23ecbccbf855af4.zip opie-84e685e0c2922899dcdd69cfc23ecbccbf855af4.tar.gz opie-84e685e0c2922899dcdd69cfc23ecbccbf855af4.tar.bz2 |
fix for #435
-rw-r--r-- | core/apps/textedit/textedit.cpp | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/core/apps/textedit/textedit.cpp b/core/apps/textedit/textedit.cpp index f38ea53..e3b8361 100644 --- a/core/apps/textedit/textedit.cpp +++ b/core/apps/textedit/textedit.cpp @@ -784,7 +784,9 @@ bool TextEdit::saveAs() { QString rt = editor->text(); qDebug(currentFileName); - if( currentFileName.isEmpty() || currentFileName == tr("Unnamed") || currentFileName == tr("Text Editor")) { + if( currentFileName.isEmpty() + || currentFileName == tr("Unnamed") + || currentFileName == tr("Text Editor")) { // qDebug("do silly TT filename thing"); if ( doc->name().isEmpty() ) { QString pt = rt.simplifyWhiteSpace(); @@ -796,7 +798,8 @@ bool TextEdit::saveAs() { 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. + // 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() ) @@ -813,8 +816,10 @@ bool TextEdit::saveAs() { map.insert(tr("Text"), text ); text << "*"; map.insert(tr("All"), text ); - - QString str = OFileDialog::getSaveFileName( 2,QPEApplication::documentDir(), QString::null, map); +// if(currentFileName + QString str = OFileDialog::getSaveFileName( 2, + QPEApplication::documentDir(), + currentFileName, map); if(!str.isEmpty() ) { QString fileNm=str; @@ -842,7 +847,9 @@ bool TextEdit::saveAs() { if( filePerms ) { filePermissions *filePerm; - filePerm = new filePermissions(this, tr("Permissions"),true,0,(const QString &)fileNm); + filePerm = new filePermissions(this, + tr("Permissions"),true, + 0,(const QString &)fileNm); filePerm->showMaximized(); filePerm->exec(); |