From 6f9938a2b29d9ed9ffc3bf8cdefe68ce730303c3 Mon Sep 17 00:00:00 2001 From: Markus Goetz Date: Wed, 3 Sep 2014 16:07:05 +0200 Subject: [PATCH] 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. --- src/mirall/owncloudtheme.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mirall/owncloudtheme.cpp b/src/mirall/owncloudtheme.cpp index 24759cb6c..a1a13a1b3 100644 --- a/src/mirall/owncloudtheme.cpp +++ b/src/mirall/owncloudtheme.cpp @@ -126,7 +126,7 @@ QPixmap ownCloudTheme::wizardHeaderLogo() const QString ownCloudTheme::appName() const { - return QLatin1String("owncloud"); + return QLatin1String("ownCloud"); } QString ownCloudTheme::appNameGUI() const