aboutsummaryrefslogtreecommitdiffstats
path: root/ui/gtk/simple_dialog.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2012-06-18 05:57:26 +0000
committerGuy Harris <guy@alum.mit.edu>2012-06-18 05:57:26 +0000
commit128126c1e670f3f76330769575c8d2d9711f31e5 (patch)
tree72d5d3adbbb44de0995ad229c289fb601d84104a /ui/gtk/simple_dialog.c
parent4d7c097f17ef2c9a209b700a902f431a06cc8230 (diff)
Use the GTK+ message type, not the Wireshark message type, in GTK+
calls. svn path=/trunk/; revision=43325
Diffstat (limited to 'ui/gtk/simple_dialog.c')
-rw-r--r--ui/gtk/simple_dialog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/gtk/simple_dialog.c b/ui/gtk/simple_dialog.c
index 8aa805e312..a0566a9f72 100644
--- a/ui/gtk/simple_dialog.c
+++ b/ui/gtk/simple_dialog.c
@@ -457,7 +457,7 @@ do_simple_message_box(ESD_TYPE_E type, gboolean *notagain,
message = g_strdup_vprintf(msg_format, ap);
msg_dialog = gtk_message_dialog_new(GTK_WINDOW(top_level),
GTK_DIALOG_MODAL|GTK_DIALOG_DESTROY_WITH_PARENT,
- type,
+ gtk_message_type,
GTK_BUTTONS_OK,
"%s", message);
g_free(message);