Initial port of the detailed event view
[lttv.git] / lttv / modules / gui / detailedevents / lttv_plugin_evd.c
index ae93579a352be74a383789bab2254c66d079c841..ed4e4dafd9d54c6dbe828ee68dcdf46ce4dd9a85 100644 (file)
@@ -28,7 +28,7 @@
 /*
  * Implementation
  */
-
+#ifdef BABEL_CLEANUP
 static void evd_update_filter(LttvPlugin *parent, LttvFilter *filter)
 {
   LttvPluginEVD *self = LTTV_PLUGIN_EVD(parent);
@@ -37,14 +37,16 @@ static void evd_update_filter(LttvPlugin *parent, LttvFilter *filter)
   self->evd->filter = filter;
   evd_redraw_notify(self->evd, NULL);
 }
-
+#endif //babel cleanup
 
 static void
 lttv_plugin_evd_class_init (LttvPluginEVDClass *klass)
 {
   LttvPluginClass *parent_klass;
   parent_klass = &klass->parent;
+  #ifdef BABEL_CLEANUP
   parent_klass->update_filter = evd_update_filter;
+#endif //babel cleanup
   g_type_class_add_private (klass, sizeof (EventViewerData));
 }
 
@@ -67,7 +69,7 @@ lttv_plugin_evd_get_type (void)
       sizeof (LttvPluginEVDClass),
       NULL,   /* base_init */
       NULL,   /* base_finalize */
-      lttv_plugin_evd_class_init,   /* class_init */
+      (GClassInitFunc) lttv_plugin_evd_class_init,   /* class_init */
       NULL,   /* class_finalize */
       NULL,   /* class_data */
       sizeof (LttvPluginEVD),
This page took 0.024207 seconds and 4 git commands to generate.