mirror of
https://github.com/nextcloud/desktop.git
synced 2025-10-26 11:17:43 +00:00
34 lines
585 B
C++
34 lines
585 B
C++
/*
|
|
* SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-FileCopyrightText: 2012 ownCloud GmbH
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#include "nextcloudtheme.h"
|
|
|
|
#include <QString>
|
|
#include <QVariant>
|
|
#ifndef TOKEN_AUTH_ONLY
|
|
#include <QPixmap>
|
|
#include <QIcon>
|
|
#endif
|
|
#include <QCoreApplication>
|
|
|
|
#include "config.h"
|
|
#include "common/utility.h"
|
|
#include "version.h"
|
|
|
|
namespace OCC {
|
|
|
|
NextcloudTheme::NextcloudTheme()
|
|
: Theme()
|
|
{
|
|
}
|
|
|
|
QString NextcloudTheme::wizardUrlHint() const
|
|
{
|
|
return QStringLiteral("https://try.nextcloud.com");
|
|
}
|
|
|
|
}
|