summaryrefslogtreecommitdiff
authorllornkcor <llornkcor>2004-03-01 09:02:25 (UTC)
committer llornkcor <llornkcor>2004-03-01 09:02:25 (UTC)
commitaa4539e4ccc23c47f720819e23c9a6faf53a4df8 (patch) (unidiff)
tree7c501175e1655b27cc144954e741d7eb8dc9372b
parent47cb805563e76732320f082975aad3046be1992a (diff)
downloadopie-aa4539e4ccc23c47f720819e23c9a6faf53a4df8.zip
opie-aa4539e4ccc23c47f720819e23c9a6faf53a4df8.tar.gz
opie-aa4539e4ccc23c47f720819e23c9a6faf53a4df8.tar.bz2
add error dialogs
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/apps/textedit/textedit.cpp11
1 files changed, 6 insertions, 5 deletions
diff --git a/core/apps/textedit/textedit.cpp b/core/apps/textedit/textedit.cpp
index 2a4d391..8e106bf 100644
--- a/core/apps/textedit/textedit.cpp
+++ b/core/apps/textedit/textedit.cpp
@@ -819,2 +819,3 @@ bool TextEdit::save() {
819 if ( !fm.saveFile( *doc, rt ) ) { 819 if ( !fm.saveFile( *doc, rt ) ) {
820 QMessageBox::message(tr("Text Edit"),tr("Save Failed"));
820 return false; 821 return false;
@@ -829,3 +830,3 @@ bool TextEdit::save() {
829 QMessageBox::message(tr("Text Edit"),tr("Write Failed")); 830 QMessageBox::message(tr("Text Edit"),tr("Write Failed"));
830 return false; 831 return false;
831 } 832 }
@@ -911,4 +912,3 @@ bool TextEdit::saveAs() {
911 QString str; 912 QString str;
912 if( !featureAutoSave) 913 if( !featureAutoSave) {
913 {
914 str = OFileDialog::getSaveFileName( 2, 914 str = OFileDialog::getSaveFileName( 2,
@@ -916,5 +916,5 @@ bool TextEdit::saveAs() {
916 filee, map); 916 filee, map);
917 } 917 } else
918 else
919 str=currentFileName; 918 str=currentFileName;
919
920 if(!str.isEmpty()) { 920 if(!str.isEmpty()) {
@@ -940,2 +940,3 @@ bool TextEdit::saveAs() {
940 if ( !fm.saveFile( *doc, rt ) ) { 940 if ( !fm.saveFile( *doc, rt ) ) {
941 QMessageBox::message(tr("Text Edit"),tr("Save Failed"));
941 return false; 942 return false;