summaryrefslogtreecommitdiff
path: root/rust/src/interaction
diff options
context:
space:
mode:
Diffstat (limited to 'rust/src/interaction')
-rw-r--r--rust/src/interaction/handler.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/rust/src/interaction/handler.rs b/rust/src/interaction/handler.rs
index fa1681d1..23ca66e4 100644
--- a/rust/src/interaction/handler.rs
+++ b/rust/src/interaction/handler.rs
@@ -264,17 +264,17 @@ impl InteractionHandlerTask {
};
let progress_ctxt = progress as *mut P as *mut c_void;
- ffi_wrap!("custom_interation_run_progress_dialog", unsafe {
+ ffi_wrap!("custom_interaction_run_progress_dialog", unsafe {
task(
self.ctxt,
- Some(cb_custom_interation_handler_task::<P>),
+ Some(cb_custom_interaction_handler_task::<P>),
progress_ctxt,
)
})
}
}
-unsafe extern "C" fn cb_custom_interation_handler_task<P: FnMut(usize, usize) -> bool>(
+unsafe extern "C" fn cb_custom_interaction_handler_task<P: FnMut(usize, usize) -> bool>(
ctxt: *mut c_void,
cur: usize,
max: usize,