summaryrefslogtreecommitdiff
path: root/noncore
authorar <ar>2004-01-10 13:55:30 (UTC)
committer ar <ar>2004-01-10 13:55:30 (UTC)
commitf4cd001fb21509caff3b83fc620ac092cb5f3913 (patch) (side-by-side diff)
tree4046ba24a4cd31f8afe13e7e9b74b5d1f806e077 /noncore
parentbf9988d771a03bc6a1d97a11ce3794d8b429b534 (diff)
downloadopie-f4cd001fb21509caff3b83fc620ac092cb5f3913.zip
opie-f4cd001fb21509caff3b83fc620ac092cb5f3913.tar.gz
opie-f4cd001fb21509caff3b83fc620ac092cb5f3913.tar.bz2
- use the new OStorageInfo instead of StorageInfo
Diffstat (limited to 'noncore') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/backup/backup.pro2
-rw-r--r--noncore/settings/backup/backuprestore.cpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/noncore/settings/backup/backup.pro b/noncore/settings/backup/backup.pro
index 7a8ad6d..4ef3e46 100644
--- a/noncore/settings/backup/backup.pro
+++ b/noncore/settings/backup/backup.pro
@@ -1,10 +1,10 @@
CONFIG = qt warn_on release quick-app
HEADERS = backuprestore.h
SOURCES = main.cpp backuprestore.cpp
INCLUDEPATH += $(OPIEDIR)/include
DEPENDPATH += $(OPIEDIR)/include
-LIBS += -lqpe
+LIBS += -lqpe -lopiecore2
INTERFACES = backuprestorebase.ui errordialog.ui
TARGET = backup
include ( $(OPIEDIR)/include.pro )
diff --git a/noncore/settings/backup/backuprestore.cpp b/noncore/settings/backup/backuprestore.cpp
index 1b34105..eb69a70 100644
--- a/noncore/settings/backup/backuprestore.cpp
+++ b/noncore/settings/backup/backuprestore.cpp
@@ -18,13 +18,13 @@
#include <qcombobox.h>
#include <qlist.h>
#include <stdlib.h>
#include <qregexp.h>
#include <qtextstream.h>
#include <qtextview.h>
-#include <qpe/storage.h>
+#include <opie2/ostorage.h>
#include <errno.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/stat.h>
#include <dirent.h>
@@ -62,13 +62,13 @@ BackupAndRestore::BackupAndRestore( QWidget* parent, const char* name, WFlags f
selectItem(applicationSettings);
documents= new QListViewItem(backupList, "Documents", "", "Documents/");
selectItem(documents);
scanForApplicationSettings();
- StorageInfo storage;
+ OStorageInfo storage;
backupLocations.insert( "Documents", QDir::homeDirPath() + "/Documents" );
if ( storage.hasCf() )
{
backupLocations.insert( "CF", storage.getCfPath() );
qDebug( "Cf Path: " + storage.getCfPath() );