aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/contact-list-editor/e-contact-list-model.h
diff options
context:
space:
mode:
authorChris Toshok <toshok@ximian.com>2002-11-06 16:22:36 +0800
committerChris Toshok <toshok@src.gnome.org>2002-11-06 16:22:36 +0800
commit5ae49242fcdbdb41bdfa642f43eb1805dc209534 (patch)
treed6f115e266025e092f92eb2a12492c207ac7f7bc /addressbook/gui/contact-list-editor/e-contact-list-model.h
parent4d53826308a95d959a986b7b7cc57abf80e85862 (diff)
downloadgsoc2013-evolution-5ae49242fcdbdb41bdfa642f43eb1805dc209534.tar
gsoc2013-evolution-5ae49242fcdbdb41bdfa642f43eb1805dc209534.tar.gz
gsoc2013-evolution-5ae49242fcdbdb41bdfa642f43eb1805dc209534.tar.bz2
gsoc2013-evolution-5ae49242fcdbdb41bdfa642f43eb1805dc209534.tar.lz
gsoc2013-evolution-5ae49242fcdbdb41bdfa642f43eb1805dc209534.tar.xz
gsoc2013-evolution-5ae49242fcdbdb41bdfa642f43eb1805dc209534.tar.zst
gsoc2013-evolution-5ae49242fcdbdb41bdfa642f43eb1805dc209534.zip
ignore the marshal generated stuff.
2002-11-05 Chris Toshok <toshok@ximian.com> * gui/contact-list-editor/.cvsignore: ignore the marshal generated stuff. * gui/contact-list-editor/Makefile.am: typical port stuff. add marshaller generation foo, dist it... * gui/contact-list-editor/e-contact-list-editor.[ch]: Port to GObject/gnome2. * gui/contact-list-editor/e-contact-list-model.[ch]: Port to GObject/gnome2. svn path=/trunk/; revision=18590
Diffstat (limited to 'addressbook/gui/contact-list-editor/e-contact-list-model.h')
-rw-r--r--addressbook/gui/contact-list-editor/e-contact-list-model.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/addressbook/gui/contact-list-editor/e-contact-list-model.h b/addressbook/gui/contact-list-editor/e-contact-list-model.h
index 1c2d6ac8d0..b57a785b88 100644
--- a/addressbook/gui/contact-list-editor/e-contact-list-model.h
+++ b/addressbook/gui/contact-list-editor/e-contact-list-model.h
@@ -2,12 +2,15 @@
#ifndef _E_CONTACT_LIST_MODEL_H_
#define _E_CONTACT_LIST_MODEL_H_
+#include <gtk/gtk.h>
#include <gal/e-table/e-table-model.h>
#include "addressbook/backend/ebook/e-book.h"
#include "addressbook/backend/ebook/e-book-view.h"
#include "addressbook/backend/ebook/e-card-simple.h"
#include "addressbook/backend/ebook/e-destination.h"
+G_BEGIN_DECLS
+
#define E_CONTACT_LIST_MODEL_TYPE (e_contact_list_model_get_type ())
#define E_CONTACT_LIST_MODEL(o) (GTK_CHECK_CAST ((o), E_CONTACT_LIST_MODEL_TYPE, EContactListModel))
#define E_CONTACT_LIST_MODEL_CLASS(k) (GTK_CHECK_CLASS_CAST((k), E_CONTACT_LIST_MODEL_TYPE, EContactListModelClass))
@@ -31,7 +34,7 @@ struct _EContactListModelClass {
};
-GtkType e_contact_list_model_get_type (void);
+GType e_contact_list_model_get_type (void);
void e_contact_list_model_construct (EContactListModel *model);
ETableModel *e_contact_list_model_new (void);
@@ -44,4 +47,6 @@ void e_contact_list_model_remove_all (EContactListModel *model);
const EDestination *e_contact_list_model_get_destination (EContactListModel *model, int row);
+G_END_DECLS
+
#endif /* _E_CONTACT_LIST_MODEL_H_ */