summaryrefslogtreecommitdiff
path: root/libmetacity
diff options
context:
space:
mode:
authorJasper St. Pierre <jstpierre@mecheye.net>2011-10-28 14:41:28 -0400
committerAlberts Muktupāvels <alberts.muktupavels@gmail.com>2016-07-07 13:48:28 +0300
commit3520b147a371bd3b803d8b1dfc50c33721c19286 (patch)
tree245baa5bc43ee95305ab01d5311556cfc7014416 /libmetacity
parentb8eca716e23bb311e4fb7130432acb0ed1d2ac56 (diff)
downloadmetacity-3520b147a371bd3b803d8b1dfc50c33721c19286.tar.gz
libmetacity: remove unused RECTANGLE code
draw_op_as_pixbuf is not not used with META_DRAW_RECTANGLE. https://bugzilla.gnome.org/show_bug.cgi?id=662962
Diffstat (limited to 'libmetacity')
-rw-r--r--libmetacity/meta-draw-op.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/libmetacity/meta-draw-op.c b/libmetacity/meta-draw-op.c
index fbdd7d64..ae0d0928 100644
--- a/libmetacity/meta-draw-op.c
+++ b/libmetacity/meta-draw-op.c
@@ -399,20 +399,6 @@ draw_op_as_pixbuf (const MetaDrawOp *op,
break;
case META_DRAW_RECTANGLE:
- if (op->data.rectangle.filled)
- {
- GdkRGBA color;
-
- meta_color_spec_render (op->data.rectangle.color_spec,
- context,
- &color);
-
- pixbuf = gdk_pixbuf_new (GDK_COLORSPACE_RGB,
- FALSE,
- 8, width, height);
-
- gdk_pixbuf_fill (pixbuf, GDK_COLOR_RGBA (color));
- }
break;
case META_DRAW_ARC: