diff options
author | Chris Toshok <toshok@ximian.com> | 2002-11-09 11:45:48 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2002-11-09 11:45:48 +0800 |
commit | 0a9f51518502e55b1172429609969287437b25e0 (patch) | |
tree | da158de3f652ae8f6ce0082c520a75644a2f8fe0 /e-util/e-categories-master-list-wombat.h | |
parent | 93e3a5b7a26de02fd34045c4b127e3349d89add4 (diff) | |
download | gsoc2013-evolution-0a9f51518502e55b1172429609969287437b25e0.tar.gz gsoc2013-evolution-0a9f51518502e55b1172429609969287437b25e0.tar.zst gsoc2013-evolution-0a9f51518502e55b1172429609969287437b25e0.zip |
add e-categories-config.h and e-categories-master-list-wombat.h
2002-11-08 Chris Toshok <toshok@ximian.com>
* Makefile.am (eutilinclude_HEADERS): add e-categories-config.h
and e-categories-master-list-wombat.h
(libeutil_la_SOURCES): add e-categories-master-list-wombat.c
* e-categories-master-list-wombat.[ch]: port work.
svn path=/trunk/; revision=18683
Diffstat (limited to 'e-util/e-categories-master-list-wombat.h')
-rw-r--r-- | e-util/e-categories-master-list-wombat.h | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/e-util/e-categories-master-list-wombat.h b/e-util/e-categories-master-list-wombat.h index a6fe2a04ff..024d7644e7 100644 --- a/e-util/e-categories-master-list-wombat.h +++ b/e-util/e-categories-master-list-wombat.h @@ -4,15 +4,13 @@ #include <gal/widgets/e-categories-master-list-array.h> -#ifdef __cplusplus -extern "C" { -#endif /* __cplusplus */ +G_BEGIN_DECLS -#define E_CATEGORIES_MASTER_LIST_WOMBAT_TYPE (e_categories_master_list_wombat_get_type ()) -#define E_CATEGORIES_MASTER_LIST_WOMBAT(o) (GTK_CHECK_CAST ((o), E_CATEGORIES_MASTER_LIST_WOMBAT_TYPE, ECategoriesMasterListWombat)) -#define E_CATEGORIES_MASTER_LIST_WOMBAT_CLASS(k) (GTK_CHECK_CLASS_CAST((k), E_CATEGORIES_MASTER_LIST_WOMBAT_TYPE, ECategoriesMasterListWombatClass)) -#define E_IS_CATEGORIES_MASTER_LIST_WOMBAT(o) (GTK_CHECK_TYPE ((o), E_CATEGORIES_MASTER_LIST_WOMBAT_TYPE)) -#define E_IS_CATEGORIES_MASTER_LIST_WOMBAT_CLASS(k) (GTK_CHECK_CLASS_TYPE ((k), E_CATEGORIES_MASTER_LIST_WOMBAT_TYPE)) +#define E_TYPE_CATEGORIES_MASTER_LIST_WOMBAT (e_categories_master_list_wombat_get_type ()) +#define E_CATEGORIES_MASTER_LIST_WOMBAT(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), E_TYPE_CATEGORIES_MASTER_LIST_WOMBAT, ECategoriesMasterListWombat)) +#define E_CATEGORIES_MASTER_LIST_WOMBAT_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), E_TYPE_CATEGORIES_MASTER_LIST_WOMBAT, ECategoriesMasterListWombatClass)) +#define E_IS_CATEGORIES_MASTER_LIST_WOMBAT(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), E_TYPE_CATEGORIES_MASTER_LIST_WOMBAT)) +#define E_IS_CATEGORIES_MASTER_LIST_WOMBAT_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), E_TYPE_CATEGORIES_MASTER_LIST_WOMBAT)) typedef struct _ECategoriesMasterListWombatPriv ECategoriesMasterListWombatPriv; @@ -25,11 +23,9 @@ typedef struct { ECategoriesMasterListArrayClass parent_class; } ECategoriesMasterListWombatClass; -GtkType e_categories_master_list_wombat_get_type (void); +GType e_categories_master_list_wombat_get_type (void); ECategoriesMasterList *e_categories_master_list_wombat_new (void); -#ifdef __cplusplus -} -#endif /* __cplusplus */ +G_END_DECLS #endif /* _E_CATEGORIES_MASTER_LIST_WOMBAT_H_ */ |