diff options
| author | Lukáš Tinkl <[email protected]> | 2014-11-03 23:52:18 +0100 |
|---|---|---|
| committer | Lukáš Tinkl <[email protected]> | 2014-11-03 23:52:18 +0100 |
| commit | 037d5db85bb0bd798d40c557d424c5c9b87457a8 (patch) | |
| tree | e032bfeb3f7e6bf3a1e118ff195df9009949a7d6 /src/settings/servicemodel.h | |
| parent | b96def1856bfd043ba7dae56368ceed6940bd6c4 (diff) | |
Q_DECL_OVERRIDE
Diffstat (limited to 'src/settings/servicemodel.h')
| -rw-r--r-- | src/settings/servicemodel.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/settings/servicemodel.h b/src/settings/servicemodel.h index b8c2d5248..f2b91c7e4 100644 --- a/src/settings/servicemodel.h +++ b/src/settings/servicemodel.h @@ -47,10 +47,10 @@ public: explicit ServiceModel(QObject* parent = 0); virtual ~ServiceModel(); - virtual bool insertRows(int row, int count, const QModelIndex & parent = QModelIndex()); - virtual bool setData(const QModelIndex& index, const QVariant& value, int role = Qt::EditRole); - virtual QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const; - virtual int rowCount(const QModelIndex& parent = QModelIndex()) const; + virtual bool insertRows(int row, int count, const QModelIndex & parent = QModelIndex()) Q_DECL_OVERRIDE; + virtual bool setData(const QModelIndex& index, const QVariant& value, int role = Qt::EditRole) Q_DECL_OVERRIDE; + virtual QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const Q_DECL_OVERRIDE; + virtual int rowCount(const QModelIndex& parent = QModelIndex()) const Q_DECL_OVERRIDE; private: struct ServiceItem |
