mirror of
https://github.com/slint-ui/slint.git
synced 2025-08-31 07:37:24 +00:00
parent
1370bd771f
commit
eaa9db4911
9 changed files with 91 additions and 72 deletions
|
@ -445,15 +445,15 @@ inline Value::Value(const std::shared_ptr<slint::Model<Value>> &model)
|
|||
std::shared_ptr<ModelChangeListener> self;
|
||||
~ModelWrapper() { cbindgen_private::slint_interpreter_model_notify_destructor(¬ify); }
|
||||
|
||||
void row_added(int index, int count) override
|
||||
void row_added(size_t index, size_t count) override
|
||||
{
|
||||
cbindgen_private::slint_interpreter_model_notify_row_added(¬ify, index, count);
|
||||
}
|
||||
void row_changed(int index) override
|
||||
void row_changed(size_t index) override
|
||||
{
|
||||
cbindgen_private::slint_interpreter_model_notify_row_changed(¬ify, index);
|
||||
}
|
||||
void row_removed(int index, int count) override
|
||||
void row_removed(size_t index, size_t count) override
|
||||
{
|
||||
cbindgen_private::slint_interpreter_model_notify_row_removed(¬ify, index, count);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue