aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-cell-toggle.c
diff options
context:
space:
mode:
authorMatias Mutchinick <matias@seul.org>2000-03-27 10:53:47 +0800
committerMiguel de Icaza <miguel@src.gnome.org>2000-03-27 10:53:47 +0800
commit480f22c1380b92ea680bad6435bc072c6d06b8ea (patch)
tree42e98236e857ba6bfc3cf55fcb7837c8fcf317eb /widgets/table/e-cell-toggle.c
parent09c05cbc769e87dd6715566d57ab153d0664c34c (diff)
downloadgsoc2013-evolution-480f22c1380b92ea680bad6435bc072c6d06b8ea.tar
gsoc2013-evolution-480f22c1380b92ea680bad6435bc072c6d06b8ea.tar.gz
gsoc2013-evolution-480f22c1380b92ea680bad6435bc072c6d06b8ea.tar.bz2
gsoc2013-evolution-480f22c1380b92ea680bad6435bc072c6d06b8ea.tar.lz
gsoc2013-evolution-480f22c1380b92ea680bad6435bc072c6d06b8ea.tar.xz
gsoc2013-evolution-480f22c1380b92ea680bad6435bc072c6d06b8ea.tar.zst
gsoc2013-evolution-480f22c1380b92ea680bad6435bc072c6d06b8ea.zip
Removed extra code that computed bogus width. This was the actual source
2000-03-26 Matias Mutchinick <matias@seul.org> * e-cell-toggle.c (etog_draw): Removed extra code that computed bogus width. This was the actual source of the problem with the miss-rendering feature. svn path=/trunk/; revision=2173
Diffstat (limited to 'widgets/table/e-cell-toggle.c')
-rw-r--r--widgets/table/e-cell-toggle.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/widgets/table/e-cell-toggle.c b/widgets/table/e-cell-toggle.c
index 1fdbcf40ca..ddca5509ab 100644
--- a/widgets/table/e-cell-toggle.c
+++ b/widgets/table/e-cell-toggle.c
@@ -125,7 +125,6 @@ etog_draw (ECellView *ecell_view, GdkDrawable *drawable,
height = art->height;
}
- width = y2 - y1;
if (image->art_pixbuf->has_alpha){
GdkColor background;
@@ -138,14 +137,14 @@ etog_draw (ECellView *ecell_view, GdkDrawable *drawable,
background.green = 255;
background.blue = 255;
- for (iy = 0; iy <= art->height; iy++){
+ for (iy = 0; iy < art->height; iy++){
unsigned char *dest;
unsigned char *src;
dest = buffer + (iy * art->rowstride);
src = art->pixels + (iy * art->rowstride);
- for (ix = 0; ix <= art->width; ix++){
+ for (ix = 0; ix < art->width; ix++){
alpha = src [3];
if (alpha == 0){
*dest++ = background.red;