From 1756618bf90c60af3ebfb887b61576fd283d8d43 Mon Sep 17 00:00:00 2001 From: DL1YCF Date: Sun, 5 Sep 2021 12:54:53 +0200 Subject: [PATCH] Correction from John. --- encoder_menu.c | 2 +- switch_menu.c | 2 +- toolbar_menu.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/encoder_menu.c b/encoder_menu.c index 66b6b2f..56958b8 100644 --- a/encoder_menu.c +++ b/encoder_menu.c @@ -62,7 +62,7 @@ static gboolean delete_event(GtkWidget *widget, GdkEvent *event, gpointer user_d static gboolean encoder_bottom_cb(GtkWidget *widget, GdkEvent *event, gpointer data) { int en=GPOINTER_TO_INT(data); - int action=action_dialog(top_window,CONTROLLER_ENCODER,encoders[en].bottom_encoder_function); + int action=action_dialog(dialog,CONTROLLER_ENCODER,encoders[en].bottom_encoder_function); gtk_button_set_label(GTK_BUTTON(widget),ActionTable[action].str); encoders[en].bottom_encoder_function=action; return TRUE; diff --git a/switch_menu.c b/switch_menu.c index 94bee0d..fb22a70 100644 --- a/switch_menu.c +++ b/switch_menu.c @@ -70,7 +70,7 @@ void switch_page_cb(GtkNotebook *notebook,GtkWidget *page,guint page_num,gpointe static gboolean switch_cb(GtkWidget *widget, GdkEvent *event, gpointer data) { int sw=GPOINTER_TO_INT(data); - int action=action_dialog(top_window,CONTROLLER_SWITCH,temp_switches[sw].switch_function); + int action=action_dialog(dialog,CONTROLLER_SWITCH,temp_switches[sw].switch_function); gtk_button_set_label(GTK_BUTTON(widget),ActionTable[action].str); temp_switches[sw].switch_function=action; update_toolbar_labels(); diff --git a/toolbar_menu.c b/toolbar_menu.c index 4dd2cc5..2913b44 100644 --- a/toolbar_menu.c +++ b/toolbar_menu.c @@ -71,7 +71,7 @@ static void switch_page_cb(GtkNotebook *notebook,GtkWidget *page,guint page_num, static gboolean switch_cb(GtkWidget *widget, GdkEvent *event, gpointer data) { int sw=GPOINTER_TO_INT(data); - int action=action_dialog(top_window,CONTROLLER_SWITCH,temp_switches[sw].switch_function); + int action=action_dialog(dialog,CONTROLLER_SWITCH,temp_switches[sw].switch_function); gtk_button_set_label(GTK_BUTTON(widget),ActionTable[action].str); temp_switches[sw].switch_function=action; update_toolbar_labels(); -- 2.45.2