aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-07-24 02:08:42 +0000
committerGuy Harris <guy@alum.mit.edu>2004-07-24 02:08:42 +0000
commit13e4c5b1f20efd4e652b868c30461af776ea58f4 (patch)
tree44f3203b1e0cbe1a3d0f7c6244bc80707ab5d393
parente046206fad6955fda3daca36477456040287d1a0 (diff)
Rename "create_color()" to "initialize_color()", as that reflects a bit
better what it actually does. svn path=/trunk/; revision=11502
-rw-r--r--color.h6
-rw-r--r--color_filters.c4
-rw-r--r--gtk/color_utils.c6
3 files changed, 8 insertions, 8 deletions
diff --git a/color.h b/color.h
index 043f3b07d8..449eddcea5 100644
--- a/color.h
+++ b/color.h
@@ -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 {
diff --git a/color_filters.c b/color_filters.c
index ea47340281..891710347a 100644
--- a/color_filters.c
+++ b/color_filters.c
@@ -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 "
diff --git a/gtk/color_utils.c b/gtk/color_utils.c
index 8159e57a48..8f95c820f6 100644
--- a/gtk/color_utils.c
+++ b/gtk/color_utils.c
@@ -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;