aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/component/select-names/e-select-names-manager.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-manager.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-manager.h')
-rw-r--r--addressbook/gui/component/select-names/e-select-names-manager.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/addressbook/gui/component/select-names/e-select-names-manager.h b/addressbook/gui/component/select-names/e-select-names-manager.h
index dd1a418396..55242629a4 100644
--- a/addressbook/gui/component/select-names/e-select-names-manager.h
+++ b/addressbook/gui/component/select-names/e-select-names-manager.h
@@ -16,16 +16,16 @@
#include "e-select-names.h"
#define E_TYPE_SELECT_NAMES_MANAGER (e_select_names_manager_get_type ())
-#define E_SELECT_NAMES_MANAGER(obj) (GTK_CHECK_CAST ((obj), E_TYPE_SELECT_NAMES_MANAGER, ESelectNamesManager))
-#define E_SELECT_NAMES_MANAGER_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), E_TYPE_SELECT_NAMES_MANAGER, ESelectNamesManagerClass))
-#define E_IS_SELECT_NAMES_MANAGER(obj) (GTK_CHECK_TYPE ((obj), E_TYPE_SELECT_NAMES_MANAGER))
-#define E_IS_SELECT_NAMES_MANAGER_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), E_TYPE_SELECT_NAMES_MANAGER))
+#define E_SELECT_NAMES_MANAGER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), E_TYPE_SELECT_NAMES_MANAGER, ESelectNamesManager))
+#define E_SELECT_NAMES_MANAGER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), E_TYPE_SELECT_NAMES_MANAGER, ESelectNamesManagerClass))
+#define E_IS_SELECT_NAMES_MANAGER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), E_TYPE_SELECT_NAMES_MANAGER))
+#define E_IS_SELECT_NAMES_MANAGER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), E_TYPE_SELECT_NAMES_MANAGER))
typedef struct _ESelectNamesManager ESelectNamesManager;
typedef struct _ESelectNamesManagerClass ESelectNamesManagerClass;
struct _ESelectNamesManager {
- GtkObject object;
+ GObject object;
GList *sections;
GList *entries;
@@ -40,7 +40,7 @@ struct _ESelectNamesManager {
};
struct _ESelectNamesManagerClass {
- GtkObjectClass parent_class;
+ GObjectClass parent_class;
void (*changed) (ESelectNamesManager *, const gchar *section_id, gint changed_working_copy);
void (*ok) (ESelectNamesManager *);
@@ -62,6 +62,6 @@ GtkWidget *e_select_names_manager_create_entry (ESelectNames
void e_select_names_manager_activate_dialog (ESelectNamesManager *manager,
const char *id);
/* Standard Gtk function */
-GtkType e_select_names_manager_get_type (void);
+GType e_select_names_manager_get_type (void);
#endif /* ! __E_SELECT_NAMES_MANAGER_H__ */