aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table
diff options
context:
space:
mode:
Diffstat (limited to 'widgets/table')
-rw-r--r--widgets/table/ChangeLog7
-rw-r--r--widgets/table/e-cell-text.c2
2 files changed, 7 insertions, 2 deletions
diff --git a/widgets/table/ChangeLog b/widgets/table/ChangeLog
index 2e0c8d03f3..f0c226a1dc 100644
--- a/widgets/table/ChangeLog
+++ b/widgets/table/ChangeLog
@@ -1,3 +1,10 @@
+2007-03-16 Matthew Barnes <mbarnes@redhat.com>
+
+ ** Fixes part of bug #360240
+
+ * e-cell-text.c (ect_free_color):
+ Remove unused variable.
+
2007-03-01 Kjartan Maraas <kmaraas@gnome.org>
* e-cell-hbox.c: (ecv_new_view), (ecv_kill_view):
diff --git a/widgets/table/e-cell-text.c b/widgets/table/e-cell-text.c
index 8406461b90..ca28e1fbca 100644
--- a/widgets/table/e-cell-text.c
+++ b/widgets/table/e-cell-text.c
@@ -448,8 +448,6 @@ ect_free_color (gchar *color_spec, GdkColor *color, GdkColormap *colormap)
/* This frees the color. Note we don't free it if it is the special
value. */
if (color != (GdkColor*) 1) {
- gulong pix = color->pixel;
-
gdk_colormap_free_colors (colormap, color, 1);
/* This frees the memory for the GdkColor. */