Make "create_color_sel_win()" static to "colors.c" - it's not used

outside that file.

svn path=/trunk/; revision=771
This commit is contained in:
Guy Harris 1999-10-05 18:10:34 +00:00
parent 66c411777b
commit 0161298edd
2 changed files with 4 additions and 5 deletions

View File

@ -1,7 +1,7 @@
/* colors.c
* Definitions for color structures and routines
*
* $Id: colors.c,v 1.10 1999/10/05 04:33:59 gram Exp $
* $Id: colors.c,v 1.11 1999/10/05 18:10:33 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@ -46,6 +46,7 @@
extern capture_file cf;
static gboolean read_filters(capture_file *cf);
static GtkWidget* create_color_sel_win(cap_file *cf, GdkColor *);
GdkColor proto_colors[MAXCOLORS];
GdkColormap* sys_cmap;
@ -1051,7 +1052,7 @@ create_colorize_win (capture_file *cf,
return colorize_win;
}
GtkWidget*
static GtkWidget*
create_color_sel_win (capture_file *cf, GdkColor * color)
{
GtkWidget *color_sel_win;

View File

@ -1,7 +1,7 @@
/* colors.h
* Definitions for color structures and routines
*
* $Id: colors.h,v 1.3 1999/10/05 04:34:00 gram Exp $
* $Id: colors.h,v 1.4 1999/10/05 18:10:34 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@ -153,7 +153,5 @@ GtkWidget* create_color_win (cap_file *cf);
GtkWidget* create_colorize_win (cap_file *cf,
GtkWidget **colorize_filter_name,
GtkWidget **colorize_filter_text);
GtkWidget* create_color_sel_win (cap_file *cf, GdkColor *);
#endif