summaryrefslogtreecommitdiff
path: root/src/gui/dialogs/export_graph.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/dialogs/export_graph.c')
-rw-r--r--src/gui/dialogs/export_graph.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/gui/dialogs/export_graph.c b/src/gui/dialogs/export_graph.c
index 0af0203..160eaf2 100644
--- a/src/gui/dialogs/export_graph.c
+++ b/src/gui/dialogs/export_graph.c
@@ -38,6 +38,7 @@
#include "../../core/logs.h"
#include "../../glibext/gbinarycursor.h"
#include "../../glibext/gloadedpanel.h"
+#include "../../gtkext/easygtk.h"
#include "../../gtkext/gtkdisplaypanel.h"
@@ -153,11 +154,11 @@ void run_graph_export_assistant(GLoadedBinary *binary, GtkGraphDisplay *display,
/* Connexion des signaux */
gtk_builder_add_callback_symbols(builder,
- "graph_export_assistant_cancel", G_CALLBACK(graph_export_assistant_cancel),
- "graph_export_assistant_close", G_CALLBACK(graph_export_assistant_close),
- "on_output_format_toggled", G_CALLBACK(on_output_format_toggled),
- "on_output_filename_changed", G_CALLBACK(on_output_filename_changed),
- "on_output_filename_selection", G_CALLBACK(on_output_filename_selection),
+ BUILDER_CALLBACK(graph_export_assistant_cancel),
+ BUILDER_CALLBACK(graph_export_assistant_close),
+ BUILDER_CALLBACK(on_output_format_toggled),
+ BUILDER_CALLBACK(on_output_filename_changed),
+ BUILDER_CALLBACK(on_output_filename_selection),
NULL);
gtk_builder_connect_signals(builder, builder);