From ff0ba56bc3e516e2ae3c5c367700dfc5d0a816d1 Mon Sep 17 00:00:00 2001 From: Klaas Freitag Date: Thu, 12 Jun 2014 16:47:17 +0200 Subject: [PATCH] ownCloud Theme: Implement appName() and appNameGUI(). --- src/mirall/owncloudtheme.cpp | 10 ++++++++++ src/mirall/owncloudtheme.h | 3 +++ 2 files changed, 13 insertions(+) diff --git a/src/mirall/owncloudtheme.cpp b/src/mirall/owncloudtheme.cpp index f73aa7c55..24759cb6c 100644 --- a/src/mirall/owncloudtheme.cpp +++ b/src/mirall/owncloudtheme.cpp @@ -124,6 +124,16 @@ QPixmap ownCloudTheme::wizardHeaderLogo() const } #endif +QString ownCloudTheme::appName() const +{ + return QLatin1String("owncloud"); +} + +QString ownCloudTheme::appNameGUI() const +{ + return QLatin1String("ownCloud"); +} + } diff --git a/src/mirall/owncloudtheme.h b/src/mirall/owncloudtheme.h index df6736166..af1c0420c 100644 --- a/src/mirall/owncloudtheme.h +++ b/src/mirall/owncloudtheme.h @@ -33,6 +33,9 @@ public: QIcon trayFolderIcon( const QString& ) const; QIcon folderDisabledIcon() const; QIcon applicationIcon() const; + QString appName() const; + QString appNameGUI() const; + QVariant customMedia(CustomMediaType type); QString helpUrl() const;