aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJody Goldberg <jgoldberg@home.com>2000-09-18 05:38:56 +0800
committerJody Goldberg <jody@src.gnome.org>2000-09-18 05:38:56 +0800
commit9fbaa4c42f2088e912e9cb5d4a453600f1863b55 (patch)
treeae1c62e6b4a57dc1f01fb92b60a68dcdbc9cae14
parent84f3540f7b0bb6f1a1a39f769c7d17d7c27ac3fa (diff)
downloadgsoc2013-evolution-9fbaa4c42f2088e912e9cb5d4a453600f1863b55.tar
gsoc2013-evolution-9fbaa4c42f2088e912e9cb5d4a453600f1863b55.tar.gz
gsoc2013-evolution-9fbaa4c42f2088e912e9cb5d4a453600f1863b55.tar.bz2
gsoc2013-evolution-9fbaa4c42f2088e912e9cb5d4a453600f1863b55.tar.lz
gsoc2013-evolution-9fbaa4c42f2088e912e9cb5d4a453600f1863b55.tar.xz
gsoc2013-evolution-9fbaa4c42f2088e912e9cb5d4a453600f1863b55.tar.zst
gsoc2013-evolution-9fbaa4c42f2088e912e9cb5d4a453600f1863b55.zip
doh!
2000-09-17 Jody Goldberg <jgoldberg@home.com> * src/widgets/e-colors.c (e_color_init) : doh! * configure.in : Add a version. * src/Makefile.am (libgal_la_LIBADD) : Update the set of lo files. svn path=/trunk/; revision=5486
-rw-r--r--widgets/misc/e-colors.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/widgets/misc/e-colors.c b/widgets/misc/e-colors.c
index 0a376262a4..4154b1bf3d 100644
--- a/widgets/misc/e-colors.c
+++ b/widgets/misc/e-colors.c
@@ -14,7 +14,7 @@
static gboolean e_color_inited;
static GdkColorContext *e_color_context;
-GdkColor gs_white, gs_dark_gray, gs_black;
+GdkColor e_white, e_dark_gray, e_black;
int
e_color_alloc (gushort red, gushort green, gushort blue)
@@ -66,10 +66,10 @@ e_color_init (void)
e_color_context = gdk_color_context_new (
gtk_widget_get_default_visual (), colormap);
- /* Allocate the default colors */
- gdk_color_white (colormap, &gs_white);
- gdk_color_black (colormap, &gs_black);
- e_color_alloc_name ("gray20", &gs_dark_gray);
-
e_color_inited = TRUE;
+
+ /* Allocate the default colors */
+ gdk_color_white (colormap, &e_white);
+ gdk_color_black (colormap, &e_black);
+ e_color_alloc_name ("gray20", &e_dark_gray);
}