From: Fabian Keil Date: Mon, 9 Mar 2009 18:32:48 +0000 (+0000) Subject: Use the Privoxy icon in the alt+tab window. X-Git-Tag: v_3_0_12~30 X-Git-Url: http://www.privoxy.org/gitweb/?a=commitdiff_plain;h=441bbef5626c134335624147942fdfe6077821b2;p=privoxy.git Use the Privoxy icon in the alt+tab window. Patch submitted by Burberry in #2674342. --- diff --git a/w32log.c b/w32log.c index dd023547..c5b56b8b 100644 --- a/w32log.c +++ b/w32log.c @@ -1,4 +1,4 @@ -const char w32log_rcs[] = "$Id: w32log.c,v 1.30 2009/01/01 15:09:23 ler762 Exp $"; +const char w32log_rcs[] = "$Id: w32log.c,v 1.31 2009/03/07 17:58:02 fabiankeil Exp $"; /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/w32log.c,v $ @@ -32,6 +32,11 @@ const char w32log_rcs[] = "$Id: w32log.c,v 1.30 2009/01/01 15:09:23 ler762 Exp $ * * Revisions : * $Log: w32log.c,v $ + * Revision 1.31 2009/03/07 17:58:02 fabiankeil + * Fix two mingw32-only buffer overflows. Note that triggering + * them requires control over the configuration file in which + * case all bets are off anyway. + * * Revision 1.30 2009/01/01 15:09:23 ler762 * Change the Windows taskbar icon when privoxy is toggled off. * @@ -846,7 +851,7 @@ HWND CreateHiddenLogOwnerWindow(HINSTANCE hInstance) wc.cbClsExtra = 0; wc.cbWndExtra = 0; wc.hInstance = hInstance; - wc.hIcon = 0; + wc.hIcon = g_hiconApp; wc.hCursor = 0; wc.hbrBackground = 0; wc.lpszMenuName = 0;