aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-table-item.c
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@ximian.com>2001-04-16 00:52:41 +0800
committerChris Lahey <clahey@src.gnome.org>2001-04-16 00:52:41 +0800
commit55b44f1c465147949a550422ff7515e8a1684cb0 (patch)
treec8b9bc73fef70bbbca8e08e44a4136a43f8a4fc6 /widgets/table/e-table-item.c
parent8da0e6054ff610764f75b2d252aaa9489396368c (diff)
downloadgsoc2013-evolution-55b44f1c465147949a550422ff7515e8a1684cb0.tar
gsoc2013-evolution-55b44f1c465147949a550422ff7515e8a1684cb0.tar.gz
gsoc2013-evolution-55b44f1c465147949a550422ff7515e8a1684cb0.tar.bz2
gsoc2013-evolution-55b44f1c465147949a550422ff7515e8a1684cb0.tar.lz
gsoc2013-evolution-55b44f1c465147949a550422ff7515e8a1684cb0.tar.xz
gsoc2013-evolution-55b44f1c465147949a550422ff7515e8a1684cb0.tar.zst
gsoc2013-evolution-55b44f1c465147949a550422ff7515e8a1684cb0.zip
Added /* #defines */ at the top. Fixed ALTERNATE_COLORS to be an #ifdef
2001-04-15 Christopher James Lahey <clahey@ximian.com> * e-table-item.c: Added /* #defines */ at the top. Fixed ALTERNATE_COLORS to be an #ifdef instead of an #if. * e-cell-text.c (ect_show_tooltip): Set "strikeout" argument on created tooltip. svn path=/trunk/; revision=9328
Diffstat (limited to 'widgets/table/e-table-item.c')
-rw-r--r--widgets/table/e-table-item.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/widgets/table/e-table-item.c b/widgets/table/e-table-item.c
index 98cb7788e5..85fab6bd64 100644
--- a/widgets/table/e-table-item.c
+++ b/widgets/table/e-table-item.c
@@ -33,6 +33,7 @@
#define FOCUSED_BORDER 2
/* #define DO_TOOLTIPS 1 */
+/* #define ALTERNATE_COLORS 1 */
#define d(x)
@@ -1337,11 +1338,12 @@ eti_draw (GnomeCanvasItem *item, GdkDrawable *drawable, int x, int y, int width,
background = &canvas->style->base [GTK_STATE_NORMAL];
}
-#if ALTERNATE_COLORS
+#ifdef ALTERNATE_COLORS
if (row % 2) {
} else {
free_background = TRUE;
+ background = gdk_color_copy (background);
e_hsv_tweak (background, 0.0f, 0.0f, -0.05f);
gdk_color_alloc (gtk_widget_get_colormap (GTK_WIDGET (canvas)), background);
}