summaryrefslogtreecommitdiff
Side-by-side diff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/apps/textedit/textedit.cpp19
1 files changed, 13 insertions, 6 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
@@ -769,5 +769,5 @@ bool TextEdit::save() {
prompted save */
bool TextEdit::saveAs() {
- qDebug("saveAsFile "+currentFileName);
+ qDebug("saveAsFile " + currentFileName);
// case of nothing to save...
if ( !doc ) {
@@ -785,5 +785,7 @@ bool TextEdit::saveAs() {
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() ) {
@@ -797,5 +799,6 @@ bool TextEdit::saveAs() {
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);
@@ -814,6 +817,8 @@ bool TextEdit::saveAs() {
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() ) {
@@ -843,5 +848,7 @@ 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();