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 /src/bw.c | |
parent | d3b6eb7ee9c7c3c2492f9181ad6f882a57ff7d84 (diff) |
s/Bw_Force/BW_Force/g
Diffstat (limited to 'src/bw.c')
-rw-r--r-- | src/bw.c | 4 |
1 files changed, 2 insertions, 2 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); } } |