mirror of
https://github.com/slint-ui/slint.git
synced 2025-10-02 14:51:15 +00:00
Janitor: Spell out argument
This commit is contained in:
parent
9608825eb2
commit
58cbfa780d
1 changed files with 2 additions and 2 deletions
|
@ -485,8 +485,8 @@ impl Drop for PropertyHandle {
|
|||
}
|
||||
|
||||
/// Safety: the dependency list must be valid and consistent
|
||||
unsafe fn mark_dependencies_dirty(deps: *mut DependencyListHead) {
|
||||
let mut next = (*deps).0.get() as *const DependencyNode;
|
||||
unsafe fn mark_dependencies_dirty(dependencies: *mut DependencyListHead) {
|
||||
let mut next = (*dependencies).0.get() as *const DependencyNode;
|
||||
while let Some(node) = next.as_ref() {
|
||||
node.debug_assert_valid();
|
||||
next = node.next.get();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue