author | alwin <alwin> | 2004-03-14 12:06:58 (UTC) |
---|---|---|
committer | alwin <alwin> | 2004-03-14 12:06:58 (UTC) |
commit | 3e260630413b00d145f48b5ede85530743fd095e (patch) (unidiff) | |
tree | 6dfd1324f530d78f40adbf14efeecfdd9b6e979f | |
parent | cede8b4bdf0d77d6fd5a51db840e9c22eea03834 (diff) | |
download | opie-3e260630413b00d145f48b5ede85530743fd095e.zip opie-3e260630413b00d145f48b5ede85530743fd095e.tar.gz opie-3e260630413b00d145f48b5ede85530743fd095e.tar.bz2 |
namespace fix
-rw-r--r-- | noncore/settings/backup/backuprestore.cpp | 2 | ||||
-rw-r--r-- | noncore/settings/backup/main.cpp | 2 | ||||
-rw-r--r-- | noncore/tools/calculator/main.cpp | 1 |
3 files changed, 3 insertions, 2 deletions
diff --git a/noncore/settings/backup/backuprestore.cpp b/noncore/settings/backup/backuprestore.cpp index 164055e..87b7966 100644 --- a/noncore/settings/backup/backuprestore.cpp +++ b/noncore/settings/backup/backuprestore.cpp | |||
@@ -62,17 +62,17 @@ BackupAndRestore::BackupAndRestore( QWidget* parent, const char* name, WFlags f | |||
62 | selectItem(applicationSettings); | 62 | selectItem(applicationSettings); |
63 | applicationSettings = new QListViewItem(backupList, "Application Data", "", "Applications/"); | 63 | applicationSettings = new QListViewItem(backupList, "Application Data", "", "Applications/"); |
64 | selectItem(applicationSettings); | 64 | selectItem(applicationSettings); |
65 | documents= new QListViewItem(backupList, "Documents", "", "Documents/"); | 65 | documents= new QListViewItem(backupList, "Documents", "", "Documents/"); |
66 | selectItem(documents); | 66 | selectItem(documents); |
67 | 67 | ||
68 | scanForApplicationSettings(); | 68 | scanForApplicationSettings(); |
69 | 69 | ||
70 | OStorageInfo storage; | 70 | Opie::Core::OStorageInfo storage; |
71 | 71 | ||
72 | backupLocations.insert( "Documents", QDir::homeDirPath() + "/Documents" ); | 72 | backupLocations.insert( "Documents", QDir::homeDirPath() + "/Documents" ); |
73 | if ( storage.hasCf() ) | 73 | if ( storage.hasCf() ) |
74 | { | 74 | { |
75 | backupLocations.insert( "CF", storage.cfPath() ); | 75 | backupLocations.insert( "CF", storage.cfPath() ); |
76 | qDebug( "Cf Path: " + storage.cfPath() ); | 76 | qDebug( "Cf Path: " + storage.cfPath() ); |
77 | } | 77 | } |
78 | if ( storage.hasSd() ) | 78 | if ( storage.hasSd() ) |
diff --git a/noncore/settings/backup/main.cpp b/noncore/settings/backup/main.cpp index 7f03136..c254865 100644 --- a/noncore/settings/backup/main.cpp +++ b/noncore/settings/backup/main.cpp | |||
@@ -1,8 +1,8 @@ | |||
1 | #include "backuprestore.h" | 1 | #include "backuprestore.h" |
2 | #include "qnetworkprotocol.h" | 2 | #include "qnetworkprotocol.h" |
3 | #include <qpe/qpeapplication.h> | 3 | #include <qpe/qpeapplication.h> |
4 | #include <opie2/oapplicationfactory.h> | 4 | #include <opie2/oapplicationfactory.h> |
5 | 5 | ||
6 | 6 | ||
7 | OPIE_EXPORT_APP( OApplicationFactory<BackupAndRestore> ) | 7 | OPIE_EXPORT_APP( Opie::Core::OApplicationFactory<BackupAndRestore> ) |
8 | 8 | ||
diff --git a/noncore/tools/calculator/main.cpp b/noncore/tools/calculator/main.cpp index 145ba38..1e00358 100644 --- a/noncore/tools/calculator/main.cpp +++ b/noncore/tools/calculator/main.cpp | |||
@@ -17,9 +17,10 @@ | |||
17 | ** not clear to you. | 17 | ** not clear to you. |
18 | ** | 18 | ** |
19 | **********************************************************************/ | 19 | **********************************************************************/ |
20 | 20 | ||
21 | #include "calculatorimpl.h" | 21 | #include "calculatorimpl.h" |
22 | 22 | ||
23 | #include <opie2/oapplicationfactory.h> | 23 | #include <opie2/oapplicationfactory.h> |
24 | 24 | ||
25 | using namespace Opie::Core; | ||
25 | OPIE_EXPORT_APP( OApplicationFactory<CalculatorImpl> ) | 26 | OPIE_EXPORT_APP( OApplicationFactory<CalculatorImpl> ) |