aboutsummaryrefslogtreecommitdiff
path: root/mthemedaemon
diff options
context:
space:
mode:
authorHolger Schroeder <holger.schroeder.ext@basyskom.de>2010-04-14 10:46:27 +0200
committerTomas Junnonen <tomas.junnonen@nokia.com>2010-04-14 16:13:53 +0300
commit99dfc037e927bc392ed1d64d88087e42e5642a4b (patch)
tree3b5a4f4d0c35465869c934cda59758be3322f24f /mthemedaemon
parent2fefa610352b2d17a98f314cb2f82be2d75fd294 (diff)
Changes: rename /M/ gconf prefix to /meegotouch/
RevBy: Tomas
Diffstat (limited to 'mthemedaemon')
-rw-r--r--mthemedaemon/mthemedaemonserver.cpp4
-rw-r--r--mthemedaemon/test/clientmanager.cpp6
-rw-r--r--mthemedaemon/test/main.cpp2
3 files changed, 6 insertions, 6 deletions
diff --git a/mthemedaemon/mthemedaemonserver.cpp b/mthemedaemon/mthemedaemonserver.cpp
index 9a632171..920579be 100644
--- a/mthemedaemon/mthemedaemonserver.cpp
+++ b/mthemedaemon/mthemedaemonserver.cpp
@@ -29,8 +29,8 @@
using namespace M::MThemeDaemonProtocol;
MThemeDaemonServer::MThemeDaemonServer() :
- currentTheme("/M/theme/name"),
- currentLocale("/M/i18n/Language")
+ currentTheme("/meegotouch/theme/name"),
+ currentLocale("/meegotouch/i18n/language")
{
const QString defaultTheme("devel");
diff --git a/mthemedaemon/test/clientmanager.cpp b/mthemedaemon/test/clientmanager.cpp
index a277970b..c83168cd 100644
--- a/mthemedaemon/test/clientmanager.cpp
+++ b/mthemedaemon/test/clientmanager.cpp
@@ -258,11 +258,11 @@ void ClientManager::changeThemeAndLocale()
#ifdef PRINT_INFO_MESSAGES
qDebug() << "INFO: Changing theme to:" << list[themeIndex];
#endif
- MGConfItem themeName("/M/theme/name");
+ MGConfItem themeName("/meegotouch/theme/name");
//themeName.set(list[themeIndex]);
// int localeIndex = rand() % locales.size();
-// MGConfItem localeName("/M/i18n/Language");
+// MGConfItem localeName("/meegotouch/i18n/language");
// localeName.set(locales[localeIndex]);
// change theme and locale again after a short period of time
@@ -296,7 +296,7 @@ bool ClientManager::verifyPixmap(const QString& theme, Client* client, quint32 h
if(imageId.startsWith("icon"))
{
#ifdef HAVE_GCONF
-// MGConfItem localeName("/M/i18n/Language");
+// MGConfItem localeName("/meegotouch/i18n/language");
// QString locale = localeName.value().toString();
QDir iconDirectory;
// if(locale.isEmpty())
diff --git a/mthemedaemon/test/main.cpp b/mthemedaemon/test/main.cpp
index 0c1c9532..1de670cb 100644
--- a/mthemedaemon/test/main.cpp
+++ b/mthemedaemon/test/main.cpp
@@ -33,7 +33,7 @@ int main(int argc, char **argv)
const QString themeName = "theme_one";
QDir themeDirectory(THEME_ROOT_DIRECTORY + '/' + themeName);
if (themeDirectory.exists()) {
- MGConfItem theme("/M/theme/name");
+ MGConfItem theme("/meegotouch/theme/name");
theme.set(themeName);
}
#endif