diff --git a/akonadi_next/recursivecollectionfilterproxymodel.h b/akonadi_next/recursivecollectionfilterproxymodel.h index 9cb56db7d7..c72d9394e6 100644 --- a/akonadi_next/recursivecollectionfilterproxymodel.h +++ b/akonadi_next/recursivecollectionfilterproxymodel.h @@ -1,64 +1,64 @@ /* Copyright (c) 2009 Stephen Kelly This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef RECURSIVECOLLECTIONFILTERPROXYMODEL_H #define RECURSIVECOLLECTIONFILTERPROXYMODEL_H -#include "krecursivefilterproxymodel.h" +#include #include "akonadi_next_export.h" namespace Akonadi { class RecursiveCollectionFilterProxyModelPrivate; class AKONADI_NEXT_EXPORT RecursiveCollectionFilterProxyModel : public KRecursiveFilterProxyModel { Q_OBJECT public: RecursiveCollectionFilterProxyModel(QObject* parent = 0); virtual ~RecursiveCollectionFilterProxyModel(); /** * Add content mime type to be shown by the filter. * * @param mimeType A mime type to be shown. */ void addContentMimeTypeInclusionFilter( const QString &mimeType ); /** * Add content mime types to be shown by the filter. * * @param mimeTypes A list of content mime types to be included. */ void addContentMimeTypeInclusionFilters( const QStringList &mimeTypes ); protected: /* reimp */ bool acceptRow(int sourceRow, const QModelIndex &sourceParent) const; protected: RecursiveCollectionFilterProxyModelPrivate * const d_ptr; Q_DECLARE_PRIVATE(RecursiveCollectionFilterProxyModel) }; } #endif