mirror of
https://github.com/nextcloud/desktop.git
synced 2024-12-17 19:31:48 +03:00
ownCloud Theme: Implement appName() and appNameGUI().
This commit is contained in:
parent
e795d04f30
commit
ff0ba56bc3
2 changed files with 13 additions and 0 deletions
|
@ -124,6 +124,16 @@ QPixmap ownCloudTheme::wizardHeaderLogo() const
|
|||
}
|
||||
#endif
|
||||
|
||||
QString ownCloudTheme::appName() const
|
||||
{
|
||||
return QLatin1String("owncloud");
|
||||
}
|
||||
|
||||
QString ownCloudTheme::appNameGUI() const
|
||||
{
|
||||
return QLatin1String("ownCloud");
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue