commit 92f4a63502b91a610d060ae0e498d914cf49602b parent 5c9612d19af69f1af8542a3e79870ca3900329e3 Author: Alexandre Bique <bique.alexandre@gmail.com> Date: Tue, 11 Jul 2023 16:37:13 +0200 Update include/clap/ext/draft/undo.h Co-authored-by: Trinitou <106991375+Trinitou@users.noreply.github.com> Diffstat:
M | include/clap/ext/draft/undo.h | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/clap/ext/draft/undo.h b/include/clap/ext/draft/undo.h @@ -43,8 +43,8 @@ typedef struct clap_plugin_undo { typedef struct clap_host_undo { // Marks the begining and end of a change which will lead to the creation of an undo step. // [main-thread] - void (*begin_changes)(clap_host_t *host, const clap_undo_change_info_t *info); - void (*end_changes)(clap_host_t *host, const clap_undo_change_info_t *info); + void (*begin_change)(clap_host_t *host, const clap_undo_change_info_t *info); + void (*end_change)(clap_host_t *host, const clap_undo_change_info_t *info); // Marks the beginning and end of processing an undo change. // [main-thread]