summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console
authorzecke <zecke>2002-09-28 19:45:01 (UTC)
committer zecke <zecke>2002-09-28 19:45:01 (UTC)
commitcb33923e1db6df3ead352f21c94b80a5785d70ca (patch) (unidiff)
treeac7816a66fe94c3d9d51411b458ee14dc117ce09 /noncore/apps/opie-console
parenta52cf21d13cc26844adbce20b24287563a559d14 (diff)
downloadopie-cb33923e1db6df3ead352f21c94b80a5785d70ca.zip
opie-cb33923e1db6df3ead352f21c94b80a5785d70ca.tar.gz
opie-cb33923e1db6df3ead352f21c94b80a5785d70ca.tar.bz2
make it possible in profileconfig
to iterate over the items in a group
Diffstat (limited to 'noncore/apps/opie-console') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/profileconfig.cpp10
-rw-r--r--noncore/apps/opie-console/profileconfig.h4
-rw-r--r--noncore/apps/opie-console/profilemanager.cpp5
3 files changed, 18 insertions, 1 deletions
diff --git a/noncore/apps/opie-console/profileconfig.cpp b/noncore/apps/opie-console/profileconfig.cpp
index 8b16920..bd089c8 100644
--- a/noncore/apps/opie-console/profileconfig.cpp
+++ b/noncore/apps/opie-console/profileconfig.cpp
@@ -35 +35,11 @@ void ProfileConfig::clearGroup( const QString& str ) {
35} 35}
36QMap<QString, QString> ProfileConfig::items( const QString& group )const {
37 QMap<QString, QString> map;
38 QMap<QString, ConfigGroup>::ConstIterator it;
39 it = Config::groups.find( group );
40
41 if (it != Config::groups.end() )
42 map = it.data();
43
44 return map;
45}
diff --git a/noncore/apps/opie-console/profileconfig.h b/noncore/apps/opie-console/profileconfig.h
index e2e149c..f371ead 100644
--- a/noncore/apps/opie-console/profileconfig.h
+++ b/noncore/apps/opie-console/profileconfig.h
@@ -12,2 +12,6 @@ public:
12 QStringList groups()const; 12 QStringList groups()const;
13 /**
14 * return the items in the group
15 */
16 QMap<QString, QString> items(const QString& group)const;
13 void clearGroup( const QString& ); 17 void clearGroup( const QString& );
diff --git a/noncore/apps/opie-console/profilemanager.cpp b/noncore/apps/opie-console/profilemanager.cpp
index db36686..54b184d 100644
--- a/noncore/apps/opie-console/profilemanager.cpp
+++ b/noncore/apps/opie-console/profilemanager.cpp
@@ -40,2 +40,5 @@ void ProfileManager::load() {
40} 40}
41void ProfileManager::clear() {
42 m_list.clear();
43}
41Profile::ValueList ProfileManager::all()const { 44Profile::ValueList ProfileManager::all()const {
@@ -57,4 +60,4 @@ Session* ProfileManager::fromProfile( const Profile& prof) {
57void ProfileManager::save( ) { 60void ProfileManager::save( ) {
58 m_list.clear();
59 ProfileConfig conf("opie-console-profiles"); 61 ProfileConfig conf("opie-console-profiles");
62 conf.clearAll();
60 Session* se= 0l; 63 Session* se= 0l;