aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/component/select-names/e-select-names.h
diff options
context:
space:
mode:
authorChris Toshok <toshok@ximian.com>2002-11-08 14:20:11 +0800
committerChris Toshok <toshok@src.gnome.org>2002-11-08 14:20:11 +0800
commit98a615797554ceab22a641f21c4b364b4af21e4f (patch)
tree12e56fcfd855b1dadbc83e5d9cf2a949d9721dd3 /addressbook/gui/component/select-names/e-select-names.h
parent237e7d2436b9e28f6609b089653068aefea435d7 (diff)
downloadgsoc2013-evolution-98a615797554ceab22a641f21c4b364b4af21e4f.tar
gsoc2013-evolution-98a615797554ceab22a641f21c4b364b4af21e4f.tar.gz
gsoc2013-evolution-98a615797554ceab22a641f21c4b364b4af21e4f.tar.bz2
gsoc2013-evolution-98a615797554ceab22a641f21c4b364b4af21e4f.tar.lz
gsoc2013-evolution-98a615797554ceab22a641f21c4b364b4af21e4f.tar.xz
gsoc2013-evolution-98a615797554ceab22a641f21c4b364b4af21e4f.tar.zst
gsoc2013-evolution-98a615797554ceab22a641f21c4b364b4af21e4f.zip
more porting work.
2002-11-07 Chris Toshok <toshok@ximian.com> * gui/component/select-names/e-select-names-bonobo.[ch]: more porting work. * gui/component/select-names/e-select-names-completion.[ch]: more porting work. * gui/component/select-names/e-select-names-manager.[ch]: more porting work. * gui/component/select-names/e-select-names-model.[ch]: more porting work. * gui/component/select-names/e-select-names-popup.c: more porting work. * gui/component/select-names/e-select-names-table-model.[ch]: more porting work. * gui/component/select-names/e-select-names-text-model.[ch]: more porting work. * gui/component/select-names/e-select-names.[ch]: more porting work. svn path=/trunk/; revision=18657
Diffstat (limited to 'addressbook/gui/component/select-names/e-select-names.h')
-rw-r--r--addressbook/gui/component/select-names/e-select-names.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/addressbook/gui/component/select-names/e-select-names.h b/addressbook/gui/component/select-names/e-select-names.h
index 154dfb67c3..d61cf0b388 100644
--- a/addressbook/gui/component/select-names/e-select-names.h
+++ b/addressbook/gui/component/select-names/e-select-names.h
@@ -46,11 +46,11 @@ extern "C" {
* --------------------------------------------------------------------------------
*/
-#define E_SELECT_NAMES_TYPE (e_select_names_get_type ())
-#define E_SELECT_NAMES(obj) (GTK_CHECK_CAST ((obj), E_SELECT_NAMES_TYPE, ESelectNames))
-#define E_SELECT_NAMES_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), E_SELECT_NAMES_TYPE, ESelectNamesClass))
-#define E_IS_SELECT_NAMES(obj) (GTK_CHECK_TYPE ((obj), E_SELECT_NAMES_TYPE))
-#define E_IS_SELECT_NAMES_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((obj), E_SELECT_NAMES_TYPE))
+#define E_TYPE_SELECT_NAMES (e_select_names_get_type ())
+#define E_SELECT_NAMES(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), E_TYPE_SELECT_NAMES, ESelectNames))
+#define E_SELECT_NAMES_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), E_TYPE_SELECT_NAMES, ESelectNamesClass))
+#define E_IS_SELECT_NAMES(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), E_TYPE_SELECT_NAMES))
+#define E_IS_SELECT_NAMES_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((obj), E_TYPE_SELECT_NAMES))
typedef struct _ESelectNames ESelectNames;
typedef struct _ESelectNamesClass ESelectNamesClass;
@@ -83,7 +83,7 @@ struct _ESelectNamesClass
GtkWidget *e_select_names_new (void);
-GtkType e_select_names_get_type (void);
+GType e_select_names_get_type (void);
void e_select_names_add_section (ESelectNames *e_select_names,
char *name,