You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some signals have record parameters that used with RefMode::ByRefMut (direct and boxed records),
so closure type looks like Fn(&CellRendererCombo, &str, &mut TreeIter) + 'static but IMHO mutable really unneeded as it in parameter.
Ex. CellArea: apply-attributes
CellRendererCombo: changed
EntryCompletion: cursor-on-match
Currently I hide mut in codegen\trampoline::func_parameter.
This is normal?
cc @gkoz
Part of #199
The text was updated successfully, but these errors were encountered:
Some signals have record parameters that used with
RefMode::ByRefMut
(direct and boxed records),so closure type looks like
Fn(&CellRendererCombo, &str, &mut TreeIter) + 'static
but IMHO mutable really unneeded as itin
parameter.Ex. CellArea: apply-attributes
CellRendererCombo: changed
EntryCompletion: cursor-on-match
Currently I hide
mut
incodegen\trampoline::func_parameter
.This is normal?
cc @gkoz
Part of #199
The text was updated successfully, but these errors were encountered: