# HG changeset patch # User leo_sobral # Date 1164925445 0 # Node ID a2308f2e6ed0b8840f3faf5c9688747bf1d23dcc # Parent 106adb6883dc6b3283128179abbe9fae5f6889d7 [svn r162] testing diff -r 106adb6883dc -r a2308f2e6ed0 gmyth/src/Makefile.am --- a/gmyth/src/Makefile.am Thu Nov 30 21:31:34 2006 +0000 +++ b/gmyth/src/Makefile.am Thu Nov 30 22:24:05 2006 +0000 @@ -29,9 +29,6 @@ $(GSTPLUGINSBASE_CFLAGS) \ $(MYSQL_CFLAGS) -#libgmyth_la_LIBADD = \ -# $(MYSQL_LIBS) - libgmyth_la_LDFLAGS = \ -export-dynamic \ $(MYSQL_LIBS) \ diff -r 106adb6883dc -r a2308f2e6ed0 gmyth/src/gmyth_epg.c --- a/gmyth/src/gmyth_epg.c Thu Nov 30 21:31:34 2006 +0000 +++ b/gmyth/src/gmyth_epg.c Thu Nov 30 22:24:05 2006 +0000 @@ -46,9 +46,7 @@ static void gmyth_epg_class_init (GMythEPGClass *klass) { - GObjectClass *gobject_class; - - gobject_class = (GObjectClass *) klass; + GObjectClass *gobject_class = G_OBJECT_CLASS (klass); gobject_class->dispose = gmyth_epg_dispose; gobject_class->finalize = gmyth_epg_finalize; @@ -64,7 +62,7 @@ gmyth_epg_dispose (GObject *object) { //GMythEPG *gmyth_epg = GMYTH_EPG(object); - + G_OBJECT_CLASS (gmyth_epg_parent_class)->dispose (object); } @@ -73,6 +71,7 @@ { g_signal_handlers_destroy (object); + g_debug("CHEGOU!!!!"); G_OBJECT_CLASS (gmyth_epg_parent_class)->finalize (object); }