gtksinks: Remove undefined private structure

The classes contains a private structure which are not defined,
hence unused.
This commit is contained in:
Nicolas Dufresne 2015-07-15 11:44:30 -04:00
parent 82c0189b28
commit 6bfbadc0f9
2 changed files with 0 additions and 6 deletions

View file

@ -29,7 +29,6 @@
typedef struct _GstGtkGLSink GstGtkGLSink; typedef struct _GstGtkGLSink GstGtkGLSink;
typedef struct _GstGtkGLSinkClass GstGtkGLSinkClass; typedef struct _GstGtkGLSinkClass GstGtkGLSinkClass;
typedef struct _GstGtkGLSinkPrivate GstGtkGLSinkPrivate;
#include <gtkgstglwidget.h> #include <gtkgstglwidget.h>
@ -76,8 +75,6 @@ struct _GstGtkGLSink
gboolean ignore_alpha; gboolean ignore_alpha;
GBinding *bind_ignore_alpha; GBinding *bind_ignore_alpha;
GstGtkGLSinkPrivate *priv;
}; };
/** /**

View file

@ -28,7 +28,6 @@
typedef struct _GstGtkSink GstGtkSink; typedef struct _GstGtkSink GstGtkSink;
typedef struct _GstGtkSinkClass GstGtkSinkClass; typedef struct _GstGtkSinkClass GstGtkSinkClass;
typedef struct _GstGtkSinkPrivate GstGtkSinkPrivate;
#include <gtkgstwidget.h> #include <gtkgstwidget.h>
@ -66,8 +65,6 @@ struct _GstGtkSink
gboolean ignore_alpha; gboolean ignore_alpha;
GBinding *bind_ignore_alpha; GBinding *bind_ignore_alpha;
GstGtkSinkPrivate *priv;
}; };
/** /**