From 2c2fe38ad01ac634f14240b27aaece1b962d3bcc Mon Sep 17 00:00:00 2001 From: Klaas Freitag Date: Fri, 3 Aug 2012 15:03:57 +0300 Subject: [PATCH] Fix app name back to "ownCloud" to load existing configs again. --- src/mirall/owncloudtheme.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/mirall/owncloudtheme.cpp b/src/mirall/owncloudtheme.cpp index 9eae59ca31..4c1bef63e8 100644 --- a/src/mirall/owncloudtheme.cpp +++ b/src/mirall/owncloudtheme.cpp @@ -29,7 +29,11 @@ ownCloudTheme::ownCloudTheme() QString ownCloudTheme::appName() const { - return QApplication::translate("appname", "ownCloud Client"); + /* If this is changed, existing configs are not found any more + * because the value is used by QDesktopServices to find the config + * file. Be aware. + */ + return QApplication::translate("appname", "ownCloud"); } QString ownCloudTheme::configFileName() const