aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/component/select-names/e-select-names-completion.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-completion.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-completion.h')
-rw-r--r--addressbook/gui/component/select-names/e-select-names-completion.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/addressbook/gui/component/select-names/e-select-names-completion.h b/addressbook/gui/component/select-names/e-select-names-completion.h
index 957a7fd465..40417841d7 100644
--- a/addressbook/gui/component/select-names/e-select-names-completion.h
+++ b/addressbook/gui/component/select-names/e-select-names-completion.h
@@ -33,11 +33,11 @@
G_BEGIN_DECLS
-#define E_SELECT_NAMES_COMPLETION_TYPE (e_select_names_completion_get_type ())
-#define E_SELECT_NAMES_COMPLETION(o) (GTK_CHECK_CAST ((o), E_SELECT_NAMES_COMPLETION_TYPE, ESelectNamesCompletion))
-#define E_SELECT_NAMES_COMPLETION_CLASS(k) (GTK_CHECK_CLASS_CAST ((k), E_SELECT_NAMES_COMPLETION_TYPE, ESelectNamesCompletionClass))
-#define E_IS_SELECT_NAMES_COMPLETION(o) (GTK_CHECK_TYPE ((o), E_SELECT_NAMES_COMPLETION_TYPE))
-#define E_IS_SELECT_NAMES_COMPLETION_CLASS(k) (GTK_CHECK_CLASS_TYPE ((k), E_SELECT_NAMES_COMPLETION_TYPE))
+#define E_TYPE_SELECT_NAMES_COMPLETION (e_select_names_completion_get_type ())
+#define E_SELECT_NAMES_COMPLETION(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), E_TYPE_SELECT_NAMES_COMPLETION, ESelectNamesCompletion))
+#define E_SELECT_NAMES_COMPLETION_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), E_TYPE_SELECT_NAMES_COMPLETION, ESelectNamesCompletionClass))
+#define E_IS_SELECT_NAMES_COMPLETION(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), E_TYPE_SELECT_NAMES_COMPLETION))
+#define E_IS_SELECT_NAMES_COMPLETION_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), E_TYPE_SELECT_NAMES_COMPLETION))
typedef struct _ESelectNamesCompletion ESelectNamesCompletion;
typedef struct _ESelectNamesCompletionClass ESelectNamesCompletionClass;
@@ -54,7 +54,7 @@ struct _ESelectNamesCompletionClass {
};
-GtkType e_select_names_completion_get_type (void);
+GType e_select_names_completion_get_type (void);
ECompletion *e_select_names_completion_new (ESelectNamesTextModel *);
void e_select_names_completion_add_book (ESelectNamesCompletion *, EBook *);