summaryrefslogtreecommitdiff
path: root/noncore
authorkergoth <kergoth>2003-01-26 05:28:35 (UTC)
committer kergoth <kergoth>2003-01-26 05:28:35 (UTC)
commit32b223ae83b3af61ecdcdd47d93d2bb852608c20 (patch) (unidiff)
treef93f06b9eab62211b0210d1d9bcae409b0723507 /noncore
parentc3347d556ea8caf355c17a169070a4c052f266de (diff)
downloadopie-32b223ae83b3af61ecdcdd47d93d2bb852608c20.zip
opie-32b223ae83b3af61ecdcdd47d93d2bb852608c20.tar.gz
opie-32b223ae83b3af61ecdcdd47d93d2bb852608c20.tar.bz2
use an information messagebox rather than critical on success, as pointed out by Ken Bantoft.
Diffstat (limited to 'noncore') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/backup/backuprestore.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/settings/backup/backuprestore.cpp b/noncore/settings/backup/backuprestore.cpp
index 78d1414..457282a 100644
--- a/noncore/settings/backup/backuprestore.cpp
+++ b/noncore/settings/backup/backuprestore.cpp
@@ -197,25 +197,25 @@ void BackupAndRestore::backupPressed(){
197 int r = system( QString("tar -c %1 | gzip > %2").arg(backupFiles).arg(outputFile).latin1() ); 197 int r = system( QString("tar -c %1 | gzip > %2").arg(backupFiles).arg(outputFile).latin1() );
198 198
199 199
200 200
201 if(r != 0){ 201 if(r != 0){
202 perror("Error: "); 202 perror("Error: ");
203 QString errorMsg="Error\n"+(QString)strerror(errno); 203 QString errorMsg="Error\n"+(QString)strerror(errno);
204 204
205 QMessageBox::critical(this, "Message", "Backup Failed.\n"+errorMsg, QString("Ok") ); 205 QMessageBox::critical(this, "Message", "Backup Failed.\n"+errorMsg, QString("Ok") );
206 return; 206 return;
207 } 207 }
208 else{ 208 else{
209 QMessageBox::critical(this, "Message", "Backup Successfull.",QString("Ok") ); 209 QMessageBox::information(this, "Message", "Backup Successfull.",QString("Ok") );
210 210
211 } 211 }
212 setCaption(tr("Backup and Restore")); 212 setCaption(tr("Backup and Restore"));
213} 213}
214 214
215/*** 215/***
216 * Get a list of all of the files to backup. 216 * Get a list of all of the files to backup.
217 */ 217 */
218int BackupAndRestore::getBackupFiles(QString &backupFiles, QListViewItem *parent){ 218int BackupAndRestore::getBackupFiles(QString &backupFiles, QListViewItem *parent){
219 QListViewItem * currentItem; 219 QListViewItem * currentItem;
220 QString currentHome; 220 QString currentHome;
221 if(!parent) 221 if(!parent)