gl: be consistent in gobject boilerpate
authorMatthew Waters <matthew@centricular.com>
Mon, 19 Oct 2015 04:15:30 +0000 (15:15 +1100)
committerMatthew Waters <matthew@centricular.com>
Mon, 19 Oct 2015 04:15:30 +0000 (15:15 +1100)
GST_GL_IS_* vs GST_IS_GL_*

git grep -l 'GST_GL_IS_' | xargs sed -i 's/GST_GL_IS_/GST_IS_GL_/g'

ext/gtk/gtkgstglwidget.c

index 3e427a8..c4d53a2 100644 (file)
@@ -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;
   }