diff options
author | Chris Toshok <toshok@ximian.com> | 2002-11-06 16:08:16 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2002-11-06 16:08:16 +0800 |
commit | 4e57b96f83fb8d0f79b10d1b219062973a095e56 (patch) | |
tree | 441afb3b747fc0b1afa99690b9d097af6e13c48c /addressbook/gui/component/select-names/e-simple-card-bonobo.h | |
parent | 1b1d829e5e32c744565679b9733f1aeaf07d96af (diff) | |
download | gsoc2013-evolution-4e57b96f83fb8d0f79b10d1b219062973a095e56.tar gsoc2013-evolution-4e57b96f83fb8d0f79b10d1b219062973a095e56.tar.gz gsoc2013-evolution-4e57b96f83fb8d0f79b10d1b219062973a095e56.tar.bz2 gsoc2013-evolution-4e57b96f83fb8d0f79b10d1b219062973a095e56.tar.lz gsoc2013-evolution-4e57b96f83fb8d0f79b10d1b219062973a095e56.tar.xz gsoc2013-evolution-4e57b96f83fb8d0f79b10d1b219062973a095e56.tar.zst gsoc2013-evolution-4e57b96f83fb8d0f79b10d1b219062973a095e56.zip |
Port to GObject/gnome2.
2002-11-05 Chris Toshok <toshok@ximian.com>
* gui/component/select-names/e-simple-card-bonobo.[ch]: Port to
GObject/gnome2.
* gui/component/select-names/e-select-names.[ch]: Port to
GObject/gnome2.
* gui/component/select-names/e-select-names-text-model.c: Port to
GObject/gnome2.
* gui/component/select-names/e-select-names-table-model.c: Port to
GObject/gnome2.
* gui/component/select-names/e-select-names-popup.[ch]: Port to
GObject/gnome2.
* gui/component/select-names/e-select-names-model.c: Port to
GObject/gnome2.
* gui/component/select-names/e-select-names-manager.[ch]: Port to
GObject/gnome2.
* gui/component/select-names/e-select-names-factory.c: Port to
GObject/gnome2.
* gui/component/select-names/e-select-names-completion.[ch]: Port
to GObject/gnome2.
* gui/component/select-names/e-select-names-bonobo.[ch]: Port to
GObject/gnome2.
* gui/component/select-names/Makefile.am: typical port stuff. add
marshaller generation foo, dist it, and switch the .oaf to .server
* gui/component/select-names/.cvsignore: ignore the marshaller
stuff.
svn path=/trunk/; revision=18587
Diffstat (limited to 'addressbook/gui/component/select-names/e-simple-card-bonobo.h')
-rw-r--r-- | addressbook/gui/component/select-names/e-simple-card-bonobo.h | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/addressbook/gui/component/select-names/e-simple-card-bonobo.h b/addressbook/gui/component/select-names/e-simple-card-bonobo.h index 763c54085b..93429f02f8 100644 --- a/addressbook/gui/component/select-names/e-simple-card-bonobo.h +++ b/addressbook/gui/component/select-names/e-simple-card-bonobo.h @@ -35,11 +35,11 @@ extern "C" { #pragma } #endif /* __cplusplus */ -#define E_TYPE_SIMPLE_CARD_BONOBO (e_simple_card_bonobo_get_type ()) -#define E_SIMPLE_CARD_BONOBO(obj) (GTK_CHECK_CAST ((obj), E_TYPE_SIMPLE_CARD_BONOBO, ESimpleCardBonobo)) -#define E_SIMPLE_CARD_BONOBO_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), E_TYPE_SIMPLE_CARD_BONOBO, ESimpleCardBonoboClass)) -#define E_IS_SIMPLE_CARD_BONOBO(obj) (GTK_CHECK_TYPE ((obj), E_TYPE_SIMPLE_CARD_BONOBO)) -#define E_IS_SIMPLE_CARD_BONOBO_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), E_TYPE_SIMPLE_CARD_BONOBO)) +#define E_TYPE_SIMPLE_CARD_BONOBO (e_simple_card_bonobo_get_type ()) +#define E_SIMPLE_CARD_BONOBO(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), E_TYPE_SIMPLE_CARD_BONOBO, ESimpleCardBonobo)) +#define E_SIMPLE_CARD_BONOBO_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), E_TYPE_SIMPLE_CARD_BONOBO, ESimpleCardBonoboClass)) +#define E_IS_SIMPLE_CARD_BONOBO(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), E_TYPE_SIMPLE_CARD_BONOBO)) +#define E_IS_SIMPLE_CARD_BONOBO_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), E_TYPE_SIMPLE_CARD_BONOBO)) typedef struct _ESimpleCardBonobo ESimpleCardBonobo; @@ -54,13 +54,12 @@ struct _ESimpleCardBonobo { struct _ESimpleCardBonoboClass { BonoboObjectClass parent_class; + + POA_GNOME_Evolution_Addressbook_SimpleCard__epv epv; }; -GtkType e_simple_card_bonobo_get_type (void); -void e_simple_card_bonobo_construct (ESimpleCardBonobo *simple_card, - GNOME_Evolution_Addressbook_SimpleCard corba_object, - ECardSimple *card_simple); +GType e_simple_card_bonobo_get_type (void); ESimpleCardBonobo *e_simple_card_bonobo_new (ECardSimple *card_simple); #ifdef __cplusplus |