summaryrefslogtreecommitdiff
path: root/gtk
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2007-09-02 23:37:40 +0000
committerBill Meier <wmeier@newsguy.com>2007-09-02 23:37:40 +0000
commit30b61b754048def9bd8517e442eff411dffc3fd4 (patch)
treed81f76c41cee987df09c45256e363955559f1c9d /gtk
parentd5ea68300759d3ae76694e4cb5a0cfea5e07f79c (diff)
downloadwireshark-30b61b754048def9bd8517e442eff411dffc3fd4.tar.gz
Fix my previous patch to enable esc on window
svn path=/trunk/; revision=22772
Diffstat (limited to 'gtk')
-rw-r--r--gtk/uat_gui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/uat_gui.c b/gtk/uat_gui.c
index bdb1131c27..f9a908cd73 100644
--- a/gtk/uat_gui.c
+++ b/gtk/uat_gui.c
@@ -1008,7 +1008,7 @@ static GtkWidget* uat_window(void* u) {
SIGNAL_CONNECT(rep->bt_cancel, "clicked", uat_cancel_cb, uat);
SIGNAL_CONNECT(rep->bt_ok, "clicked", uat_ok_cb, uat);
- window_set_cancel_button(rep->window, rep->bt_cancel, uat_cancel_cb); /* set esc to activate cancel button */
+ window_set_cancel_button(rep->window, rep->bt_cancel, NULL); /* set esc to activate cancel button */
if (uat->changed) {
SIGNAL_CONNECT(GTK_WINDOW(rep->window), "delete_event", unsaved_dialog, uat);