aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/component/e-cardlist-model.h
diff options
context:
space:
mode:
authorChris Toshok <toshok@ximian.com>2002-11-08 14:24:55 +0800
committerChris Toshok <toshok@src.gnome.org>2002-11-08 14:24:55 +0800
commitab44fe3e1d962e7876693929c940121e2954379d (patch)
tree337a2db277df0506b22a2954370906de3c37127c /addressbook/gui/component/e-cardlist-model.h
parent98a615797554ceab22a641f21c4b364b4af21e4f (diff)
downloadgsoc2013-evolution-ab44fe3e1d962e7876693929c940121e2954379d.tar
gsoc2013-evolution-ab44fe3e1d962e7876693929c940121e2954379d.tar.gz
gsoc2013-evolution-ab44fe3e1d962e7876693929c940121e2954379d.tar.bz2
gsoc2013-evolution-ab44fe3e1d962e7876693929c940121e2954379d.tar.lz
gsoc2013-evolution-ab44fe3e1d962e7876693929c940121e2954379d.tar.xz
gsoc2013-evolution-ab44fe3e1d962e7876693929c940121e2954379d.tar.zst
gsoc2013-evolution-ab44fe3e1d962e7876693929c940121e2954379d.zip
add lots of libs back in since they're building now.
2002-11-07 Chris Toshok <toshok@ximian.com> * gui/component/Makefile.am (evolution_addressbook_LDADD): add lots of libs back in since they're building now. * gui/component/addressbook-config.c: more porting work. * gui/component/addressbook.c: more porting work. * gui/component/e-address-popup.[ch]: more porting work. * gui/component/e-address-widget.[ch]: more porting work. * gui/component/e-cardlist-model.[ch]: more porting work. svn path=/trunk/; revision=18658
Diffstat (limited to 'addressbook/gui/component/e-cardlist-model.h')
-rw-r--r--addressbook/gui/component/e-cardlist-model.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/addressbook/gui/component/e-cardlist-model.h b/addressbook/gui/component/e-cardlist-model.h
index dc2da509e0..0968e936fc 100644
--- a/addressbook/gui/component/e-cardlist-model.h
+++ b/addressbook/gui/component/e-cardlist-model.h
@@ -2,17 +2,16 @@
#ifndef _E_CARDLIST_MODEL_H_
#define _E_CARDLIST_MODEL_H_
-#include <gtk/gtk.h>
#include <gal/e-table/e-table-model.h>
#include <ebook/e-book.h>
#include <ebook/e-book-view.h>
#include <ebook/e-card-simple.h>
#define E_TYPE_CARDLIST_MODEL (e_cardlist_model_get_type ())
-#define E_CARDLIST_MODEL(o) (GTK_CHECK_CAST ((o), E_TYPE_CARDLIST_MODEL, ECardlistModel))
-#define E_CARDLIST_MODEL_CLASS(k) (GTK_CHECK_CLASS_CAST((k), E_TYPE_CARDLIST_MODEL, ECardlistModelClass))
-#define E_IS_CARDLIST_MODEL(o) (GTK_CHECK_TYPE ((o), E_TYPE_CARDLIST_MODEL))
-#define E_IS_CARDLIST_MODEL_CLASS(k) (GTK_CHECK_CLASS_TYPE ((k), E_TYPE_CARDLIST_MODEL))
+#define E_CARDLIST_MODEL(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), E_TYPE_CARDLIST_MODEL, ECardlistModel))
+#define E_CARDLIST_MODEL_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), E_TYPE_CARDLIST_MODEL, ECardlistModelClass))
+#define E_IS_CARDLIST_MODEL(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), E_TYPE_CARDLIST_MODEL))
+#define E_IS_CARDLIST_MODEL_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), E_TYPE_CARDLIST_MODEL))
typedef struct {
ETableModel parent;
@@ -28,7 +27,7 @@ typedef struct {
} ECardlistModelClass;
-GtkType e_cardlist_model_get_type (void);
+GType e_cardlist_model_get_type (void);
ETableModel *e_cardlist_model_new (void);
/* Returns object with an extra ref count. */