summaryrefslogtreecommitdiff
path: root/gtk/simple_dialog.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2006-05-28 17:19:08 +0000
committerAnders Broman <anders.broman@ericsson.com>2006-05-28 17:19:08 +0000
commit05448fcc3d492b2bbbfacadaf11243ee1e1143de (patch)
tree0e8ff097e52b1898c1009e580c0ec2d2c63c526e /gtk/simple_dialog.c
parentdb57e7b72403ac766f8be66092d91dec7fd0d8bc (diff)
downloadwireshark-05448fcc3d492b2bbbfacadaf11243ee1e1143de.tar.gz
Ethereal->Wireshark
svn path=/trunk/; revision=18232
Diffstat (limited to 'gtk/simple_dialog.c')
-rw-r--r--gtk/simple_dialog.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/simple_dialog.c b/gtk/simple_dialog.c
index da04a1ae1d..4f9f34fa1d 100644
--- a/gtk/simple_dialog.c
+++ b/gtk/simple_dialog.c
@@ -204,7 +204,7 @@ display_simple_dialog(gint type, gint btn_mask, char *message)
bbox = dlg_button_row_new(GTK_STOCK_YES, GTK_STOCK_NO, GTK_STOCK_CANCEL, NULL);
break;
case(ESD_BTNS_SAVE_DONTSAVE_CANCEL):
- bbox = dlg_button_row_new(GTK_STOCK_SAVE, ETHEREAL_STOCK_DONT_SAVE, GTK_STOCK_CANCEL, NULL);
+ bbox = dlg_button_row_new(GTK_STOCK_SAVE, WIRESHARK_STOCK_DONT_SAVE, GTK_STOCK_CANCEL, NULL);
break;
case(ESD_BTNS_YES_NO):
bbox = dlg_button_row_new(GTK_STOCK_YES, GTK_STOCK_NO, NULL);
@@ -229,7 +229,7 @@ display_simple_dialog(gint type, gint btn_mask, char *message)
SIGNAL_CONNECT(save_bt, "clicked", simple_dialog_cancel_cb, win);
}
- dont_save_bt = OBJECT_GET_DATA(bbox, ETHEREAL_STOCK_DONT_SAVE);
+ dont_save_bt = OBJECT_GET_DATA(bbox, WIRESHARK_STOCK_DONT_SAVE);
if (dont_save_bt) {
OBJECT_SET_DATA(dont_save_bt, CALLBACK_BTN_KEY, GINT_TO_POINTER(ESD_BTN_DONT_SAVE));
SIGNAL_CONNECT(dont_save_bt, "clicked", simple_dialog_cancel_cb, win);