X-Git-Url: http://www.privoxy.org/gitweb/?a=blobdiff_plain;f=w32log.c;h=97e0bf140c53040116cee5a9be5246ec0f170d46;hb=603935af8ee29293a5e544cd1bc7125110c79432;hp=13e84690cb0dced4b511a4bf3508680689215b89;hpb=8cdcdc439be755cede31e0c3075e4932eba1ba04;p=privoxy.git diff --git a/w32log.c b/w32log.c index 13e84690..97e0bf14 100644 --- a/w32log.c +++ b/w32log.c @@ -1,4 +1,4 @@ -const char w32log_rcs[] = "$Id: w32log.c,v 1.9 2001/05/31 17:33:13 oes Exp $"; +const char w32log_rcs[] = "$Id: w32log.c,v 1.10 2001/05/31 21:37:11 jongfoster Exp $"; /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/w32log.c,v $ @@ -32,6 +32,9 @@ const char w32log_rcs[] = "$Id: w32log.c,v 1.9 2001/05/31 17:33:13 oes Exp $"; * * Revisions : * $Log: w32log.c,v $ + * Revision 1.10 2001/05/31 21:37:11 jongfoster + * GUI changes to rename "permissions file" to "actions file". + * * Revision 1.9 2001/05/31 17:33:13 oes * * CRLF -> LF @@ -195,10 +198,6 @@ int g_nFontSize = DEFAULT_LOG_FONT_SIZE; /* FIXME: this is a kludge */ const char * g_actions_file = NULL; -const char * g_forwardfile = NULL; -#ifdef ACL_FILES -const char * g_aclfile = NULL; -#endif /* def ACL_FILES */ #ifdef PCRS const char * g_re_filterfile = NULL; #endif @@ -1115,16 +1114,6 @@ void OnLogCommand(int nCommand) EditFile(g_actions_file); break; - case ID_TOOLS_EDITFORWARD: - EditFile(g_forwardfile); - break; - -#ifdef ACL_FILES - case ID_TOOLS_EDITACLS: - EditFile(g_aclfile); - break; -#endif /* def ACL_FILES */ - #ifdef PCRS case ID_TOOLS_EDITPERLRE: EditFile(g_re_filterfile); @@ -1188,10 +1177,6 @@ void OnLogInitMenu(HMENU hmenu) { /* Only enable editors if there is a file to edit */ EnableMenuItem(hmenu, ID_TOOLS_EDITACTIONS, MF_BYCOMMAND | (g_actions_file ? MF_ENABLED : MF_GRAYED)); - EnableMenuItem(hmenu, ID_TOOLS_EDITFORWARD, MF_BYCOMMAND | (g_forwardfile ? MF_ENABLED : MF_GRAYED)); -#ifdef ACL_FILES - EnableMenuItem(hmenu, ID_TOOLS_EDITACLS, MF_BYCOMMAND | (g_aclfile ? MF_ENABLED : MF_GRAYED)); -#endif /* def ACL_FILES */ #ifdef PCRS EnableMenuItem(hmenu, ID_TOOLS_EDITPERLRE, MF_BYCOMMAND | (g_re_filterfile ? MF_ENABLED : MF_GRAYED)); #endif