summaryrefslogtreecommitdiff
path: root/ext/gtk
diff options
context:
space:
mode:
authorMatthew Waters <matthew@centricular.com>2015-10-19 15:15:30 +1100
committerMatthew Waters <matthew@centricular.com>2015-10-19 15:15:30 +1100
commit3dfc6899adc5faa6e4b423d227ebac47e96bfff6 (patch)
tree86b87dc9eb0c735d342a8d7b9c2ada66a2ae26b8 /ext/gtk
parent0d3fbcdea860a5dc4a67a9abb5741601fc7f4c41 (diff)
downloadgstreamer-plugins-bad-3dfc6899adc5faa6e4b423d227ebac47e96bfff6.tar.gz
gl: be consistent in gobject boilerpate
GST_GL_IS_* vs GST_IS_GL_* git grep -l 'GST_GL_IS_' | xargs sed -i 's/GST_GL_IS_/GST_IS_GL_/g'
Diffstat (limited to 'ext/gtk')
-rw-r--r--ext/gtk/gtkgstglwidget.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/gtk/gtkgstglwidget.c b/ext/gtk/gtkgstglwidget.c
index 3e427a8d3..c4d53a2b0 100644
--- a/ext/gtk/gtkgstglwidget.c
+++ b/ext/gtk/gtkgstglwidget.c
@@ -505,7 +505,7 @@ gtk_gst_gl_widget_init_winsys (GtkGstGLWidget * gst_widget)
GTK_GST_BASE_WIDGET_LOCK (gst_widget);
}
- if (!GST_GL_IS_CONTEXT (priv->other_context)) {
+ if (!GST_IS_GL_CONTEXT (priv->other_context)) {
GTK_GST_BASE_WIDGET_UNLOCK (gst_widget);
return FALSE;
}