ownCloudTheme: Fix casing in appName()

Without this fix, the section in the config file uses the wrong name,
leading to re-configuration of the client needed.
This commit is contained in:
Markus Goetz 2014-09-03 16:07:05 +02:00
parent 33d9f4b882
commit 69066013c1

View file

@ -114,7 +114,7 @@ QPixmap ownCloudTheme::wizardHeaderLogo() const
QString ownCloudTheme::appName() const
{
return QLatin1String("owncloud");
return QLatin1String("ownCloud");
}
QString ownCloudTheme::appNameGUI() const