mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-30 12:49:40 +00:00
Change gtk_type_new -> g_object_new.
Original commit message from CVS: Change gtk_type_new -> g_object_new.
This commit is contained in:
parent
7dfe156f37
commit
800bf882c3
1 changed files with 1 additions and 1 deletions
|
@ -112,7 +112,7 @@ gst_dpman_new (gchar *name, GstElement *parent)
|
|||
|
||||
g_return_val_if_fail (name != NULL, NULL);
|
||||
|
||||
dpman = gtk_type_new (gst_dpman_get_type ());
|
||||
dpman = g_object_new (gst_dpman_get_type (), NULL);
|
||||
gst_object_set_name (GST_OBJECT (dpman), name);
|
||||
gst_dpman_set_parent(dpman, parent);
|
||||
|
||||
|
|
Loading…
Reference in a new issue