summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrbuj <[email protected]>2020-06-12 10:49:08 +0200
committerRobert Antoni Buj Gelonch <[email protected]>2020-06-17 11:14:02 +0200
commit3e921a602f216137d674cec6f6b9b67d4bae701a (patch)
tree0c04b7659445df961de4d5aeec6f2f10b6959b89
parent182db38e83a67d52e15888e3281c3b4dfc2bee40 (diff)
downloadengrampa-3e921a602f216137d674cec6f6b9b67d4bae701a.tar.bz2
engrampa-3e921a602f216137d674cec6f6b9b67d4bae701a.tar.xz
dlg-update: Fix callback names for callback symbol update_cb
-rw-r--r--src/dlg-update.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dlg-update.c b/src/dlg-update.c
index 50405ff..177dfdb 100644
--- a/src/dlg-update.c
+++ b/src/dlg-update.c
@@ -301,9 +301,9 @@ dlg_update (FrWindow *window)
gtk_builder_add_callback_symbols (builder,
"on_update_file_dialog_destroy", G_CALLBACK (dlg_update__destroy_cb),
- "update_file_ok_button_clicked", G_CALLBACK (update_cb),
+ "on_update_file_ok_button_clicked", G_CALLBACK (update_cb),
"on_update_files_dialog_destroy", G_CALLBACK (dlg_update__destroy_cb),
- "update_file_ok_button_clicked", G_CALLBACK (update_cb),
+ "on_update_files_ok_button_clicked", G_CALLBACK (update_cb),
NULL);
gtk_builder_connect_signals (builder, data);