Rename "create_color()" to "initialize_color()", as that reflects a bit

better what it actually does.


git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@11502 f5534014-38df-0310-8fa8-9805f1628bb7
This commit is contained in:
guy 2004-07-24 02:08:42 +00:00
parent 1e466cde6a
commit 445312f6d0
3 changed files with 8 additions and 8 deletions

View File

@ -43,8 +43,8 @@ typedef struct {
guint16 blue;
} color_t;
/** Create a color from R, G, and B values, and do whatever toolkit-dependent
** work needs to be done.
/** Initialize a color with R, G, and B values, including any toolkit-dependent
** work that needs to be done.
*
* @param color the color_t to be filled
* @param red the red value for the color
@ -53,7 +53,7 @@ typedef struct {
* @param source the GdkColor to be filled
* @return TRUE if it succeeds, FALSE if it fails
*/
gboolean create_color(color_t *color, guint16 red, guint16 green, guint16 blue);
gboolean initialize_color(color_t *color, guint16 red, guint16 green, guint16 blue);
/* Data for a color filter. */
typedef struct _color_filter {

View File

@ -256,7 +256,7 @@ read_filters_file(FILE *f, gpointer arg)
continue;
}
if (!create_color(&fg_color, fg_r, fg_g, fg_b)) {
if (!initialize_color(&fg_color, fg_r, fg_g, fg_b)) {
/* oops */
simple_dialog(ESD_TYPE_ERROR, ESD_BTN_OK,
"Could not allocate foreground color "
@ -265,7 +265,7 @@ read_filters_file(FILE *f, gpointer arg)
skip_end_of_line = TRUE;
continue;
}
if (!create_color(&bg_color, bg_r, bg_g, bg_b)) {
if (!initialize_color(&bg_color, bg_r, bg_g, bg_b)) {
/* oops */
simple_dialog(ESD_TYPE_ERROR, ESD_BTN_OK,
"Could not allocate background color "

View File

@ -33,12 +33,12 @@
#include "colors.h"
/*
* Create a color from R, G, and B values, and do whatever toolkit-dependent
* work needs to be done.
* Initialize a color with R, G, and B values, including any toolkit-dependent
* work that needs to be done.
* Returns TRUE if it succeeds, FALSE if it fails.
*/
gboolean
create_color(color_t *color, guint16 red, guint16 green, guint16 blue)
initialize_color(color_t *color, guint16 red, guint16 green, guint16 blue)
{
GdkColor gdk_color;