~aacid/qtubuntu/remove_unused_signal

« back to all changes in this revision

Viewing changes to src/ubuntuappmenu/themeplugin.cpp

  • Committer: Bileto Bot
  • Date: 2017-01-16 06:39:32 UTC
  • mfrom: (360.2.4 qtubuntu)
  • Revision ID: ci-train-bot@canonical.com-20170116063932-70jenqyqw3jplt3q
Resync trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2016 Canonical, Ltd.
 
3
 *
 
4
 * This program is free software: you can redistribute it and/or modify it under
 
5
 * the terms of the GNU Lesser General Public License version 3, as published by
 
6
 * the Free Software Foundation.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful, but WITHOUT
 
9
 * ANY WARRANTY; without even the implied warranties of MERCHANTABILITY,
 
10
 * SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
11
 * Lesser General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU Lesser General Public License
 
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 */
 
16
 
 
17
#include "themeplugin.h"
 
18
#include "theme.h"
 
19
 
 
20
#include <QDebug>
 
21
 
 
22
///////////////////////////////////////////////////////////
 
23
 
 
24
UbuntuAppMenuThemePlugin::UbuntuAppMenuThemePlugin(QObject *parent)
 
25
    : QPlatformThemePlugin(parent)
 
26
{
 
27
}
 
28
 
 
29
QPlatformTheme *
 
30
UbuntuAppMenuThemePlugin::create(const QString &key, const QStringList&)
 
31
{
 
32
    if (key.compare(QLatin1String(UbuntuAppMenuTheme::name), Qt::CaseInsensitive))
 
33
        return 0;
 
34
 
 
35
    return new UbuntuAppMenuTheme();
 
36
}