diff options
author | Morten Welinder <mortenw@src.gnome.org> | 1999-05-22 03:12:01 +0800 |
---|---|---|
committer | Morten Welinder <mortenw@src.gnome.org> | 1999-05-22 03:12:01 +0800 |
commit | 3be2b5f40a41f1a375d07ed7eba5d388ca699e7d (patch) | |
tree | d3f1b7fb7334280937abd5e669b7fccbabac3c41 /widgets/misc | |
parent | bdf895136ea393bd59960623d7cab970900048f7 (diff) | |
download | gsoc2013-evolution-3be2b5f40a41f1a375d07ed7eba5d388ca699e7d.tar gsoc2013-evolution-3be2b5f40a41f1a375d07ed7eba5d388ca699e7d.tar.gz gsoc2013-evolution-3be2b5f40a41f1a375d07ed7eba5d388ca699e7d.tar.bz2 gsoc2013-evolution-3be2b5f40a41f1a375d07ed7eba5d388ca699e7d.tar.lz gsoc2013-evolution-3be2b5f40a41f1a375d07ed7eba5d388ca699e7d.tar.xz gsoc2013-evolution-3be2b5f40a41f1a375d07ed7eba5d388ca699e7d.tar.zst gsoc2013-evolution-3be2b5f40a41f1a375d07ed7eba5d388ca699e7d.zip |
Reworked the insert/delete column/row code again. Beat on it, please!
svn path=/trunk/; revision=937
Diffstat (limited to 'widgets/misc')
-rw-r--r-- | widgets/misc/e-colors.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/widgets/misc/e-colors.c b/widgets/misc/e-colors.c index bfb96fb201..18a3c81f66 100644 --- a/widgets/misc/e-colors.c +++ b/widgets/misc/e-colors.c @@ -12,7 +12,10 @@ #include "color.h" static int color_inited; -GdkColorContext *gnumeric_color_context; +static GdkColorContext *gnumeric_color_context; + +/* Public colors: shared by all of our items in Gnumeric */ +GdkColor gs_white, gs_black, gs_light_gray, gs_dark_gray, gs_red; int color_alloc (gushort red, gushort green, gushort blue) |