summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/profile.cpp
Side-by-side diff
Diffstat (limited to 'noncore/apps/opie-console/profile.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/opie-console/profile.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/noncore/apps/opie-console/profile.cpp b/noncore/apps/opie-console/profile.cpp
index cdf595e..c8f5eb0 100644
--- a/noncore/apps/opie-console/profile.cpp
+++ b/noncore/apps/opie-console/profile.cpp
@@ -33,6 +33,9 @@ Profile &Profile::operator=( const Profile& prof ) {
}
Profile::~Profile() {
}
+QMap<QString, QString> Profile::conf()const {
+ return m_conf;
+}
QString Profile::name()const {
return m_name;
}
@@ -104,3 +107,6 @@ int Profile::readNumEntry( const QString& key, int def )const {
bool Profile::readBoolEntry( const QString& key, bool def )const {
return readNumEntry( key, def );
}
+void Profile::setConf( const QMap<QString, QString>& conf ) {
+ m_conf = conf;
+};