comparison data/model/ModelDataTableModel.h @ 1770:dffc70996f54

Correct some erroneous signal signatures
author Chris Cannam
date Fri, 19 Jul 2019 16:10:00 +0100
parents 356be36b2391
children
comparison
equal deleted inserted replaced
1769:9a8327e7b2dc 1770:dffc70996f54
71 void addCommand(Command *); 71 void addCommand(Command *);
72 void currentChanged(const QModelIndex &); 72 void currentChanged(const QModelIndex &);
73 void modelRemoved(); 73 void modelRemoved();
74 74
75 protected slots: 75 protected slots:
76 void modelChanged(); 76 void modelChanged(ModelId);
77 void modelChangedWithin(sv_frame_t, sv_frame_t); 77 void modelChangedWithin(ModelId, sv_frame_t, sv_frame_t);
78 78
79 protected: 79 protected:
80 std::shared_ptr<TabularModel> getTabularModel() const { 80 std::shared_ptr<TabularModel> getTabularModel() const {
81 return ModelById::getAs<TabularModel>(m_model); 81 return ModelById::getAs<TabularModel>(m_model);
82 } 82 }