Mercurial > hg > svcore
diff data/model/ModelDataTableModel.h @ 929:59e7fe1b1003 warnfix_no_size_t
Unsigned removals and warning fixes in data/
author | Chris Cannam |
---|---|
date | Tue, 17 Jun 2014 14:33:42 +0100 |
parents | b1dc68507e46 |
children | cd42620e3f40 |
line wrap: on
line diff
--- a/data/model/ModelDataTableModel.h Tue Jun 17 13:52:07 2014 +0100 +++ b/data/model/ModelDataTableModel.h Tue Jun 17 14:33:42 2014 +0100 @@ -51,8 +51,8 @@ int rowCount(const QModelIndex &parent = QModelIndex()) const; int columnCount(const QModelIndex &parent = QModelIndex()) const; - QModelIndex getModelIndexForFrame(size_t frame) const; - size_t getFrameForModelIndex(const QModelIndex &) const; + QModelIndex getModelIndexForFrame(int frame) const; + int getFrameForModelIndex(const QModelIndex &) const; void sort(int column, Qt::SortOrder order = Qt::AscendingOrder); @@ -62,14 +62,14 @@ int getCurrentRow() const; signals: - void frameSelected(size_t); + void frameSelected(int); void addCommand(Command *); void currentChanged(const QModelIndex &); void modelRemoved(); protected slots: void modelChanged(); - void modelChanged(size_t, size_t); + void modelChanged(int, int); void modelAboutToBeDeleted(); protected: