aboutsummaryrefslogtreecommitdiffstats
path: root/ui/gtk/dlg_utils.c
diff options
context:
space:
mode:
authorEvan Huus <eapache@gmail.com>2013-03-09 12:21:00 +0000
committerEvan Huus <eapache@gmail.com>2013-03-09 12:21:00 +0000
commit1fbece78ab25244f9b476f9209c9716e14051e44 (patch)
tree66b9e8fbde33e9758b0290c12cc7637001e95e69 /ui/gtk/dlg_utils.c
parent0685f1d5e1fc92e504da603f71c7187e29c31a4e (diff)
Two instances of s/delete/delete_id/ to satisfy C++ that were missed in
r48212 and were causing build failures. svn path=/trunk/; revision=48214
Diffstat (limited to 'ui/gtk/dlg_utils.c')
-rw-r--r--ui/gtk/dlg_utils.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/gtk/dlg_utils.c b/ui/gtk/dlg_utils.c
index e7427bd757..e955a3f2bd 100644
--- a/ui/gtk/dlg_utils.c
+++ b/ui/gtk/dlg_utils.c
@@ -357,9 +357,9 @@ dlg_button_row_new(const gchar *stock_id_first, ...)
dlg_button_new(hbox, button_hbox, cap_stop);
return hbox;
}
- if (delete && cancel) {
+ if (delete_id && cancel) {
dlg_button_new(hbox, button_hbox, cancel);
- dlg_button_new(hbox, button_hbox, delete);
+ dlg_button_new(hbox, button_hbox, delete_id);
return hbox;
}
}