gst-libs/gst/interfaces/xoverlay.c: Remove unused statement from doc example.
authorStefan Kost <ensonic@users.sourceforge.net>
Fri, 22 Sep 2006 11:59:00 +0000 (11:59 +0000)
committerStefan Kost <ensonic@users.sourceforge.net>
Fri, 22 Sep 2006 11:59:00 +0000 (11:59 +0000)
Original commit message from CVS:
* gst-libs/gst/interfaces/xoverlay.c:
Remove unused statement from doc example.

ChangeLog
gst-libs/gst/interfaces/xoverlay.c

index 86751f0..f3b6d2f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-09-22  Stefan Kost  <ensonic@users.sf.net>
+
+       * gst-libs/gst/interfaces/xoverlay.c:
+         Remove unused statement from doc example.
+
 2006-09-21  Stefan Kost  <ensonic@users.sf.net>
 
        * gst-libs/gst/interfaces/videoorientation.c:
index a35d1b3..8c5ecc0 100644 (file)
@@ -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, &amp;values);
- *  
  *  XMapRaised (disp, win);
  *  
  *  XSync (disp, FALSE);