diff --git a/ChangeLog b/ChangeLog index 86751f0325..f3b6d2fed5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-09-22 Stefan Kost + + * gst-libs/gst/interfaces/xoverlay.c: + Remove unused statement from doc example. + 2006-09-21 Stefan Kost * gst-libs/gst/interfaces/videoorientation.c: diff --git a/gst-libs/gst/interfaces/xoverlay.c b/gst-libs/gst/interfaces/xoverlay.c index a35d1b32a5..8c5ecc0c59 100644 --- a/gst-libs/gst/interfaces/xoverlay.c +++ b/gst-libs/gst/interfaces/xoverlay.c @@ -64,8 +64,6 @@ * static GstBusSyncReply * create_window (GstBus * bus, GstMessage * message, GstPipeline * pipeline) * { - * XGCValues values; - * * // ignore anything but 'prepare-xwindow-id' element messages * if (GST_MESSAGE_TYPE (message) != GST_MESSAGE_ELEMENT) * return GST_BUS_PASS; @@ -77,8 +75,6 @@ * * XSetWindowBackgroundPixmap (disp, win, None); * - * gc = XCreateGC (disp, win, 0, &values); - * * XMapRaised (disp, win); * * XSync (disp, FALSE);