From 6facd92e17699de1e036eab4be02b09e00f3d6de Mon Sep 17 00:00:00 2001 From: Christopher James Lahey Date: Wed, 14 Feb 2001 21:29:56 +0000 Subject: Removed this unused function. 2001-02-14 Christopher James Lahey * component/component-factory.c (component_destroy_cb): Removed this unused function. * evolution-services/executive-summary-html-view.c (impl_GNOME_Evolution_Summary_HTMLView_handleURI): Changed the declaration of this function to match the signature in the generated header file. * test-service/rdf-summary.c (property_control): Added a cast here. svn path=/trunk/; revision=8227 --- executive-summary/ChangeLog | 12 ++++++++++++ executive-summary/component/component-factory.c | 7 ------- .../evolution-services/executive-summary-html-view.c | 2 +- executive-summary/test-service/rdf-summary.c | 4 ++-- 4 files changed, 15 insertions(+), 10 deletions(-) (limited to 'executive-summary') diff --git a/executive-summary/ChangeLog b/executive-summary/ChangeLog index 6e0f51c270..d64404e3db 100644 --- a/executive-summary/ChangeLog +++ b/executive-summary/ChangeLog @@ -1,3 +1,15 @@ +2001-02-14 Christopher James Lahey + + * component/component-factory.c (component_destroy_cb): Removed + this unused function. + + * evolution-services/executive-summary-html-view.c + (impl_GNOME_Evolution_Summary_HTMLView_handleURI): Changed the + declaration of this function to match the signature in the + generated header file. + + * test-service/rdf-summary.c (property_control): Added a cast here. + 2001-02-14 Iain Holmes * evolution-services/executive-summary-html-view.c diff --git a/executive-summary/component/component-factory.c b/executive-summary/component/component-factory.c index 0537275d4e..4fba79c420 100644 --- a/executive-summary/component/component-factory.c +++ b/executive-summary/component/component-factory.c @@ -98,13 +98,6 @@ owner_unset_cb (EvolutionShellComponent *shell_component, gtk_main_quit (); } -static void -component_destroy_cb (GtkObject *object, - gpointer user_data) -{ - gtk_main_quit (); -} - static void factory_destroy (BonoboObject *component, gpointer dummy) diff --git a/executive-summary/evolution-services/executive-summary-html-view.c b/executive-summary/evolution-services/executive-summary-html-view.c index 8a3498cdd8..45f2e86c16 100644 --- a/executive-summary/evolution-services/executive-summary-html-view.c +++ b/executive-summary/evolution-services/executive-summary-html-view.c @@ -97,7 +97,7 @@ impl_GNOME_Evolution_Summary_HTMLView_getHtml (PortableServer_Servant servant, static void impl_GNOME_Evolution_Summary_HTMLView_handleURI (PortableServer_Servant servant, - CORBA_char *uri, + const CORBA_char *uri, CORBA_Environment *ev) { BonoboObject *bonobo_object; diff --git a/executive-summary/test-service/rdf-summary.c b/executive-summary/test-service/rdf-summary.c index 6bc3768335..b99d939c11 100644 --- a/executive-summary/test-service/rdf-summary.c +++ b/executive-summary/test-service/rdf-summary.c @@ -785,8 +785,8 @@ property_control (BonoboPropertyControl *property_control, label = gtk_label_new (_("Update every ")); gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0); - summary->adjustment = gtk_adjustment_new (summary->time / 1000 / 60, - 0.0, 1000.0, 1.0, 10.0, 1.0); + summary->adjustment = GTK_ADJUSTMENT(gtk_adjustment_new (summary->time / 1000 / 60, + 0.0, 1000.0, 1.0, 10.0, 1.0)); spinner = gtk_spin_button_new (summary->adjustment, 1.0, 0); gtk_box_pack_start (GTK_BOX (hbox), spinner, FALSE, FALSE, 0); -- cgit v1.2.3