gst-libs/gst/interfaces/xoverlay.c: Remove unused statement from doc example.

Original commit message from CVS:
* gst-libs/gst/interfaces/xoverlay.c:
Remove unused statement from doc example.
This commit is contained in:
Stefan Kost 2006-09-22 11:59:00 +00:00
parent 884c87d01f
commit 7b5c310767
2 changed files with 5 additions and 4 deletions

View file

@ -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:

View 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);