mirror of
https://github.com/slint-ui/slint.git
synced 2025-10-01 14:21:16 +00:00
Work around doxygen complaining about lack of override function
This commit is contained in:
parent
325751a695
commit
8a8ff6d2e9
1 changed files with 1 additions and 0 deletions
|
@ -455,6 +455,7 @@ struct IntModel : Model<int>
|
||||||
IntModel(int d) : data(d) { }
|
IntModel(int d) : data(d) { }
|
||||||
/// \private
|
/// \private
|
||||||
int data;
|
int data;
|
||||||
|
/// \copydoc Model::row_count
|
||||||
int row_count() const override { return data; }
|
int row_count() const override { return data; }
|
||||||
int row_data(int value) const override { return value; }
|
int row_data(int value) const override { return value; }
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue