comment out for now to ease compat issues. (evolution_composer_construct):
2001-01-17 Michael Meeks <michael@helixcode.com> * evolution-composer.c (enum_objects): comment out for now to ease compat issues. (evolution_composer_construct): pass in NULL for the item handler enum_objects fn + calm warning. svn path=/trunk/; revision=7584
This commit is contained in:
committed by
Michael Meeks
parent
e332680b3d
commit
2e8306e07b
@ -1,3 +1,10 @@
|
||||
2001-01-17 Michael Meeks <michael@helixcode.com>
|
||||
|
||||
* evolution-composer.c (enum_objects): comment out for now
|
||||
to ease compat issues.
|
||||
(evolution_composer_construct): pass in NULL for the item
|
||||
handler enum_objects fn + calm warning.
|
||||
|
||||
2001-01-17 JP Rosevear <jpr@ximian.com>
|
||||
|
||||
* e-msg-composer.c (e_msg_composer_new_with_message): Use the
|
||||
|
||||
@ -246,12 +246,12 @@ init (EvolutionComposer *composer)
|
||||
GTK_SIGNAL_FUNC (postpone_cb), NULL);
|
||||
}
|
||||
|
||||
|
||||
static Bonobo_ItemContainer_ObjectList *
|
||||
#if 0
|
||||
static Bonobo_ItemContainer_ObjectNames *
|
||||
enum_objects (BonoboItemHandler *handler, gpointer data, CORBA_Environment *ev)
|
||||
{
|
||||
#warning "This function is not implemented because enumObjects has a broken CORBA prototype");
|
||||
}
|
||||
#endif
|
||||
|
||||
static Bonobo_Unknown
|
||||
get_object (BonoboItemHandler *h, const char *item_name, gboolean only_if_exists,
|
||||
@ -292,7 +292,8 @@ evolution_composer_construct (EvolutionComposer *composer,
|
||||
|
||||
bonobo_object_construct (BONOBO_OBJECT (composer), corba_object);
|
||||
|
||||
item_handler = bonobo_item_handler_new (enum_objects, get_object, composer);
|
||||
item_handler = BONOBO_OBJECT (
|
||||
bonobo_item_handler_new (NULL, get_object, composer));
|
||||
bonobo_object_add_interface (BONOBO_OBJECT (composer), BONOBO_OBJECT (item_handler));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user