summaryrefslogtreecommitdiff
path: root/noncore/settings/backup/backuprestore.cpp
authorllornkcor <llornkcor>2002-11-14 13:33:20 (UTC)
committer llornkcor <llornkcor>2002-11-14 13:33:20 (UTC)
commitb65957131fd1e12079aafe78abff9ad31356da72 (patch) (side-by-side diff)
treeb02895370efa055d9a830229a2adb557beb633a5 /noncore/settings/backup/backuprestore.cpp
parentd7d53215cef9420872a4e0f42b547b4148ca33a9 (diff)
downloadopie-b65957131fd1e12079aafe78abff9ad31356da72.zip
opie-b65957131fd1e12079aafe78abff9ad31356da72.tar.gz
opie-b65957131fd1e12079aafe78abff9ad31356da72.tar.bz2
caption
Diffstat (limited to 'noncore/settings/backup/backuprestore.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/settings/backup/backuprestore.cpp27
1 files changed, 25 insertions, 2 deletions
diff --git a/noncore/settings/backup/backuprestore.cpp b/noncore/settings/backup/backuprestore.cpp
index 02998f0..618ce24 100644
--- a/noncore/settings/backup/backuprestore.cpp
+++ b/noncore/settings/backup/backuprestore.cpp
@@ -1,4 +1,10 @@
+
#include "backuprestore.h"
+#include "output.h"
+
+#include <qapplication.h>
+#include <qmultilineedit.h>
+
#include <qdir.h>
#include <qfile.h>
#include <qfileinfo.h>
@@ -13,6 +19,12 @@
#include <stdlib.h>
#include <qregexp.h>
+#include <errno.h>
+#include <stdlib.h>
+#include <unistd.h>
+#include <sys/stat.h>
+#include <dirent.h>
+
#define HEADER_NAME 0
#define HEADER_BACKUP 1
#define BACKUP_LOCATION 2
@@ -165,6 +177,7 @@ void BackupAndRestore::backupPressed(){
return;
}
+ setCaption(tr("Backup and Restore... working..."));
QString outputFile = backupLocations[storeToLocation->currentText()];
QDateTime time = QDateTime::currentDateTime();
@@ -177,16 +190,26 @@ void BackupAndRestore::backupPressed(){
outputFile = t + QString("%1").arg(c);
c++;
}
+
+ qDebug(QString("system(\"tar -c %1 | gzip > %2\")").arg(backupFiles).arg(outputFile).latin1());
outputFile += EXTENSION;
- qDebug("system(\"tar -c %1 | gzip > %2\").arg(backupFiles).arg(outputFile).latin1())");
+
int r = system(QString("tar -c %1 | gzip > %2").arg(backupFiles).arg(outputFile).latin1() );
+
+
+
if(r != 0){
- QMessageBox::critical(this, "Message", "Backup Failed.",QString("Ok") );
+ perror("Error: ");
+ QString errorMsg="Error\n"+(QString)strerror(errno);
+
+ QMessageBox::critical(this, "Message", "Backup Failed.\n"+errorMsg, QString("Ok") );
return;
}
else{
QMessageBox::critical(this, "Message", "Backup Successfull.",QString("Ok") );
+
}
+ setCaption(tr("Backup and Restore"));
}
/***