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 a650dce17f
commit 6f9938a2b2

View file

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