diff options
author | Jorge Arellano Cid <jcid@dillo.org> | 2009-08-11 12:10:31 -0400 |
---|---|---|
committer | Jorge Arellano Cid <jcid@dillo.org> | 2009-08-11 12:10:31 -0400 |
commit | b4885050a417b18a3a0185fc1f44b7cb75c35069 (patch) | |
tree | b788fee1ef53ebf0c91db93be86f3eebef6661fa | |
parent | d3b6eb7ee9c7c3c2492f9181ad6f882a57ff7d84 (diff) |
s/Bw_Force/BW_Force/g
-rw-r--r-- | src/bw.c | 4 | ||||
-rw-r--r-- | src/bw.h | 2 | ||||
-rw-r--r-- | src/chain.c | 2 | ||||
-rw-r--r-- | src/uicmd.cc | 4 |
4 files changed, 6 insertions, 6 deletions
@@ -182,7 +182,7 @@ void a_Bw_stop_clients(BrowserWindow *bw, int flags) if (flags & BW_Root) { /* Remove root clients */ while ((data = dList_nth_data(bw->RootClients, 0))) { - a_Capi_stop_client(VOIDP2INT(data), (flags & Bw_Force)); + a_Capi_stop_client(VOIDP2INT(data), (flags & BW_Force)); dList_remove_fast(bw->RootClients, data); } } @@ -190,7 +190,7 @@ void a_Bw_stop_clients(BrowserWindow *bw, int flags) if (flags & BW_Img) { /* Remove image clients */ while ((data = dList_nth_data(bw->ImageClients, 0))) { - a_Capi_stop_client(VOIDP2INT(data), (flags & Bw_Force)); + a_Capi_stop_client(VOIDP2INT(data), (flags & BW_Force)); dList_remove_fast(bw->ImageClients, data); } } @@ -8,7 +8,7 @@ */ #define BW_Root (1) /* Root URLs */ #define BW_Img (2) /* Image URLs */ -#define Bw_Force (4) /* Stop connection too */ +#define BW_Force (4) /* Stop connection too */ typedef struct _BrowserWindow BrowserWindow; diff --git a/src/chain.c b/src/chain.c index d4098a2d..c009b531 100644 --- a/src/chain.c +++ b/src/chain.c @@ -15,7 +15,7 @@ #include "chain.h" #include "../dlib/dlib.h" -#define VERBOSE 0 +#define VERBOSE 1 /* * Show debugging info diff --git a/src/uicmd.cc b/src/uicmd.cc index 9c60ccb8..d9cce163 100644 --- a/src/uicmd.cc +++ b/src/uicmd.cc @@ -532,7 +532,7 @@ void a_UIcmd_close_bw(void *vbw) Layout *layout = (Layout*)bw->render_layout; MSG("a_UIcmd_close_bw\n"); - a_Bw_stop_clients(bw, BW_Root + BW_Img + Bw_Force); + a_Bw_stop_clients(bw, BW_Root + BW_Img + BW_Force); delete(layout); if (ui->tabs()) { ui->tabs()->remove(ui); @@ -792,7 +792,7 @@ void a_UIcmd_stop(void *vbw) MSG("a_UIcmd_stop()\n"); a_Nav_cancel_expect(bw); - a_Bw_stop_clients(bw, BW_Root + BW_Img + Bw_Force); + a_Bw_stop_clients(bw, BW_Root + BW_Img + BW_Force); a_UIcmd_set_buttons_sens(bw); } |