diff options
author | Jorge Arellano Cid <jcid@dillo.org> | 2011-02-06 22:13:53 -0300 |
---|---|---|
committer | Jorge Arellano Cid <jcid@dillo.org> | 2011-02-06 22:13:53 -0300 |
commit | f359543fa273a205b0111e824d34fca839cd3b45 (patch) | |
tree | d153aa5185d95aa485f5e028e069403e8d7ec8ca | |
parent | fc99fd7a3497252746618a0d6f94b823aed1ff12 (diff) |
choice5 part2 (minor fix)
-rw-r--r-- | src/uicmd.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/uicmd.cc b/src/uicmd.cc index e005aaf6..0c25a4f4 100644 --- a/src/uicmd.cc +++ b/src/uicmd.cc @@ -370,7 +370,7 @@ public: //---------------------------------------------------------------------------- static void win_cb (Fl_Widget *w, void *cb_data) { - int choice = 0; + int choice = 1; CustTabGroup *tabs = (CustTabGroup*) cb_data; if (tabs->children () > 1) @@ -570,7 +570,7 @@ void a_UIcmd_close_bw(void *vbw) void a_UIcmd_close_all_bw(void *) { BrowserWindow *bw; - int choice = 0; + int choice = 1; if (a_Bw_num() > 1) choice = a_Dialog_choice5("More than one open tab or Window.", |