Don't use class casts before they're initialized
Original commit message from CVS: Don't use class casts before they're initialized
This commit is contained in:
parent
0c972d4aae
commit
3fe8f41f7a
@ -65,6 +65,7 @@ gst_x_overlay_get_type (void)
|
|||||||
static void
|
static void
|
||||||
gst_x_overlay_base_init (gpointer g_class)
|
gst_x_overlay_base_init (gpointer g_class)
|
||||||
{
|
{
|
||||||
|
GstXOverlayClass *overlay_class = (GstXOverlayClass *) g_class;
|
||||||
static gboolean initialized = FALSE;
|
static gboolean initialized = FALSE;
|
||||||
|
|
||||||
if (! initialized)
|
if (! initialized)
|
||||||
@ -80,7 +81,7 @@ gst_x_overlay_base_init (gpointer g_class)
|
|||||||
initialized = TRUE;
|
initialized = TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
GST_X_OVERLAY_CLASS (g_class)->set_xwindow_id = NULL;
|
overlay_class->set_xwindow_id = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user