You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
631 B
28 lines
631 B
/* |
|
|
|
SPDX-FileCopyrightText: 2017 David Faure <faure@kde.org> |
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later |
|
*/ |
|
|
|
#include "favoritecollectionorderproxymodel.h" |
|
#include "mailcommon_debug.h" |
|
#include <Akonadi/Collection> |
|
#include <Akonadi/EntityTreeModel> |
|
|
|
using namespace MailCommon; |
|
|
|
FavoriteCollectionOrderProxyModel::FavoriteCollectionOrderProxyModel(QObject *parent) |
|
: EntityOrderProxyModel(parent) |
|
{ |
|
} |
|
|
|
FavoriteCollectionOrderProxyModel::~FavoriteCollectionOrderProxyModel() |
|
{ |
|
} |
|
|
|
Akonadi::Collection FavoriteCollectionOrderProxyModel::parentCollection(const QModelIndex &index) const |
|
{ |
|
Q_UNUSED(index) |
|
return {}; |
|
}
|
|
|