aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/uicmd.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/uicmd.cc b/src/uicmd.cc
index 8e73a1e9..c12b7e9d 100644
--- a/src/uicmd.cc
+++ b/src/uicmd.cc
@@ -330,7 +330,7 @@ static void win_cb (Fl_Widget *w, void *cb_data) {
if (tabs->num_tabs() > 1)
choice = a_Dialog_choice5("Window contains more than one tab.",
- "Close all tabs", "Cancel", NULL, NULL, NULL);
+ "Close", "Cancel", NULL, NULL, NULL);
if (choice == 1)
while (tabs->num_tabs())
a_UIcmd_close_bw(a_UIcmd_get_bw_by_widget(tabs->wizard()->value()));
@@ -475,8 +475,8 @@ void a_UIcmd_close_all_bw(void *)
int choice = 1;
if (a_Bw_num() > 1)
- choice = a_Dialog_choice5("More than one open tab or Window.",
- "Close all tabs and windows", "Cancel", NULL, NULL, NULL);
+ choice = a_Dialog_choice5("More than one open tab or window.",
+ "Quit", "Cancel", NULL, NULL, NULL);
if (choice == 1)
while ((bw = a_Bw_get(0)))
a_UIcmd_close_bw((void*)bw);