diff options
author | corvid <corvid@lavabit.com> | 2011-04-29 04:11:46 +0000 |
---|---|---|
committer | corvid <corvid@lavabit.com> | 2011-04-29 04:11:46 +0000 |
commit | 1e61bf1c83d638941739be2c786af63851bc4338 (patch) | |
tree | 8e89759334ad96086916a6fa03cbb2d2714cf130 | |
parent | bf26a108295b7c2d281118c4e7258d868a5deb34 (diff) |
less wordy close dialog buttons
-rw-r--r-- | src/uicmd.cc | 6 |
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); |