Added ability to use .glade file in cwd

Original commit message from CVS:
Added ability to use .glade file in cwd
This commit is contained in:
Erik Walthinsen 2000-12-31 22:49:50 +00:00
parent 9a0438ba93
commit 3651488227

View file

@ -125,6 +125,9 @@ gst_media_play_init(GstMediaPlay *mplay)
/* load the interface */
mplay->xml = glade_xml_new (DATADIR"gstmediaplay.glade", "gstplay");
//mplay->xml = glade_xml_new ("/usr/local/share/gstplay/gstplay.glade", "gstplay");
if (mplay->xml == NULL) {
glade_xml_new ("gstmediaplay.glade", "gstplay");
}
g_assert (mplay->xml != NULL);
mplay->slider = glade_xml_get_widget(mplay->xml, "slider");