~ci-train-bot/ubuntu-system-settings/ubuntu-system-settings-ubuntu-zesty-2679

« back to all changes in this revision

Viewing changes to tests/mocks/Ubuntu/SystemSettings/Notifications/MockClickApplicationsNotifyModel.cpp

  • Committer: Ken VanDine
  • Date: 2017-03-15 19:17:14 UTC
  • mto: This revision was merged to the branch mainline in revision 1766.
  • Revision ID: ken.vandine@canonical.com-20170315191714-1appjzosayvmf246
removed more click/updates stuff

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright 2016 Canonical Ltd.
3
 
 *
4
 
 * This file is part of system-settings.
5
 
 *
6
 
 * webbrowser-app is free software; you can redistribute it and/or modify
7
 
 * it under the terms of the GNU General Public License as published by
8
 
 * the Free Software Foundation; version 3.
9
 
 *
10
 
 * webbrowser-app is distributed in the hope that it will be useful,
11
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 
 * GNU General Public License for more details.
14
 
 *
15
 
 * You should have received a copy of the GNU General Public License
16
 
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
 
 */
18
 
 
19
 
// local
20
 
#include "MockClickApplicationsNotifyModel.h"
21
 
#include "MockClickApplicationsModel.h"
22
 
 
23
 
MockClickApplicationsModel* MockClickApplicationsNotifyModel::sourceModel() const
24
 
{
25
 
    return qobject_cast<MockClickApplicationsModel*>(QSortFilterProxyModel::sourceModel());
26
 
}
27
 
 
28
 
void MockClickApplicationsNotifyModel::setSourceModel(MockClickApplicationsModel* sourceModel)
29
 
{
30
 
    if (sourceModel != this->sourceModel()) {
31
 
        QSortFilterProxyModel::setSourceModel(sourceModel);
32
 
        Q_EMIT sourceModelChanged();
33
 
        Q_EMIT countChanged();
34
 
    }
35
 
}