Index: sources/model/MListModel.h =================================================================== diff -u -rf433eeefae34530e7cc3dc4e5576e43729b236f2 -raacca8cc53f5e4ff5abb6d7df3d5ad48c915645c --- sources/model/MListModel.h (.../MListModel.h) (revision f433eeefae34530e7cc3dc4e5576e43729b236f2) +++ sources/model/MListModel.h (.../MListModel.h) (revision aacca8cc53f5e4ff5abb6d7df3d5ad48c915645c) @@ -26,17 +26,17 @@ bool setData (const QModelIndex &vIndex, const QVariant& vValue, int vRole = Qt::EditRole) override; void clear ( ); void setRoleNames(const QHash& vRoleNames ); - MListModel &operator = (const QList> &src ); void appendRow (const QHash &vData ); void insertRow (const int vRow, const QHash &vData ); void updateData (const int vRow, const int vRole, const QVariant& vValue ); + MListModel &operator = (const QList> &src ); public slots: QVariantMap get (int vRow ) const; // Exposed to QML private: QList> _data; QHash _roleNames; - }; -} + +} // namespace View