Fix app name back to "ownCloud" to load existing configs again.

This commit is contained in:
Klaas Freitag 2012-08-03 15:03:57 +03:00
parent bdb35f508a
commit 2c2fe38ad0

View file

@ -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