~ubuntu-branches/ubuntu/wily/threadweaver/wily

« back to all changes in this revision

Viewing changes to examples/ThumbNailer/Model.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2015-03-17 15:39:57 UTC
  • mfrom: (1.1.8)
  • Revision ID: package-import@ubuntu.com-20150317153957-zy9l2brz2ztjndfu
Tags: 5.8.0-0ubuntu1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
70
70
    void progressChanged();
71
71
    void elementChanged(int id);
72
72
 
73
 
    int rowCount(const QModelIndex &parent = QModelIndex()) const;
74
 
    QVariant data(const QModelIndex &index, int role) const;
75
 
    QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const;
 
73
    int rowCount(const QModelIndex &parent = QModelIndex()) const Q_DECL_OVERRIDE;
 
74
    QVariant data(const QModelIndex &index, int role) const Q_DECL_OVERRIDE;
 
75
    QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const Q_DECL_OVERRIDE;
76
76
 
77
77
Q_SIGNALS:
78
78
    void completed();