~ubuntu-branches/ubuntu/quantal/gwenview/quantal-proposed

« back to all changes in this revision

Viewing changes to lib/semanticinfo/sorteddirmodel.h

  • Committer: Package Import Robot
  • Author(s): Philip Muškovac, Philip Muškovac, Scott Kitterman
  • Date: 2011-12-24 18:54:55 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20111224185455-zxffs6i6m5cwwuze
Tags: 4:4.7.95-0ubuntu1
[ Philip Muškovac ]
* New upstream release candiate

[ Scott Kitterman ]
* Fix Ubuntu Vcs- header in debian/control

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
#include <QPointer>
27
27
 
28
28
// KDE
29
 
#include <kdirsortfilterproxymodel.h>
 
29
#include <KDirSortFilterProxyModel>
30
30
 
31
31
// Local
32
32
#include <lib/gwenviewlib_export.h>
52
52
public:
53
53
    AbstractSortedDirModelFilter(SortedDirModel* model);
54
54
    ~AbstractSortedDirModelFilter();
55
 
    SortedDirModel* model() const {
 
55
    SortedDirModel* model() const
 
56
    {
56
57
        return mModel;
57
58
    }
58
59