1.1 --- a/gmyth/src/Makefile.am Thu Nov 30 21:31:34 2006 +0000
1.2 +++ b/gmyth/src/Makefile.am Thu Nov 30 22:24:05 2006 +0000
1.3 @@ -29,9 +29,6 @@
1.4 $(GSTPLUGINSBASE_CFLAGS) \
1.5 $(MYSQL_CFLAGS)
1.6
1.7 -#libgmyth_la_LIBADD = \
1.8 -# $(MYSQL_LIBS)
1.9 -
1.10 libgmyth_la_LDFLAGS = \
1.11 -export-dynamic \
1.12 $(MYSQL_LIBS) \
2.1 --- a/gmyth/src/gmyth_epg.c Thu Nov 30 21:31:34 2006 +0000
2.2 +++ b/gmyth/src/gmyth_epg.c Thu Nov 30 22:24:05 2006 +0000
2.3 @@ -46,9 +46,7 @@
2.4 static void
2.5 gmyth_epg_class_init (GMythEPGClass *klass)
2.6 {
2.7 - GObjectClass *gobject_class;
2.8 -
2.9 - gobject_class = (GObjectClass *) klass;
2.10 + GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
2.11
2.12 gobject_class->dispose = gmyth_epg_dispose;
2.13 gobject_class->finalize = gmyth_epg_finalize;
2.14 @@ -64,7 +62,7 @@
2.15 gmyth_epg_dispose (GObject *object)
2.16 {
2.17 //GMythEPG *gmyth_epg = GMYTH_EPG(object);
2.18 -
2.19 +
2.20 G_OBJECT_CLASS (gmyth_epg_parent_class)->dispose (object);
2.21 }
2.22
2.23 @@ -73,6 +71,7 @@
2.24 {
2.25 g_signal_handlers_destroy (object);
2.26
2.27 + g_debug("CHEGOU!!!!");
2.28 G_OBJECT_CLASS (gmyth_epg_parent_class)->finalize (object);
2.29 }
2.30