diff options
author | Chris Toshok <toshok@ximian.com> | 2002-11-15 10:18:33 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2002-11-15 10:18:33 +0800 |
commit | 555aa35da24b6977073379c71f1bbb27ac36d86c (patch) | |
tree | a9f5d20ff7d894cb537d9bd06a433fc7e633a360 /widgets/misc/e-selection-model-simple.h | |
parent | 273f7a811a3336a1ed8decae5521f365ea86d5e1 (diff) | |
download | gsoc2013-evolution-555aa35da24b6977073379c71f1bbb27ac36d86c.tar.gz gsoc2013-evolution-555aa35da24b6977073379c71f1bbb27ac36d86c.tar.zst gsoc2013-evolution-555aa35da24b6977073379c71f1bbb27ac36d86c.zip |
this derives from GObject now.
2002-11-14 Chris Toshok <toshok@ximian.com>
* gal/widgets/e-selection-model.[ch]: this derives from GObject now.
* gal/widgets/e-selection-model-simple.[ch]: same.
* gal/widgets/e-selection-model-array.[ch]: same.
* gal/widgets/e-reflow-model.[ch]: same.
* gal/widgets/e-reflow.c: fix all references to EReflowModel such
that it's a GObject, not a GtkObject.
svn path=/trunk/; revision=18772
Diffstat (limited to 'widgets/misc/e-selection-model-simple.h')
-rw-r--r-- | widgets/misc/e-selection-model-simple.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/widgets/misc/e-selection-model-simple.h b/widgets/misc/e-selection-model-simple.h index 5a19685827..6b4f84b4f9 100644 --- a/widgets/misc/e-selection-model-simple.h +++ b/widgets/misc/e-selection-model-simple.h @@ -31,10 +31,10 @@ extern "C" { #endif /* __cplusplus */ #define E_SELECTION_MODEL_SIMPLE_TYPE (e_selection_model_simple_get_type ()) -#define E_SELECTION_MODEL_SIMPLE(o) (GTK_CHECK_CAST ((o), E_SELECTION_MODEL_SIMPLE_TYPE, ESelectionModelSimple)) -#define E_SELECTION_MODEL_SIMPLE_CLASS(k) (GTK_CHECK_CLASS_CAST((k), E_SELECTION_MODEL_SIMPLE_TYPE, ESelectionModelSimpleClass)) -#define E_IS_SELECTION_MODEL_SIMPLE(o) (GTK_CHECK_TYPE ((o), E_SELECTION_MODEL_SIMPLE_TYPE)) -#define E_IS_SELECTION_MODEL_SIMPLE_CLASS(k) (GTK_CHECK_CLASS_TYPE ((k), E_SELECTION_MODEL_SIMPLE_TYPE)) +#define E_SELECTION_MODEL_SIMPLE(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), E_SELECTION_MODEL_SIMPLE_TYPE, ESelectionModelSimple)) +#define E_SELECTION_MODEL_SIMPLE_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), E_SELECTION_MODEL_SIMPLE_TYPE, ESelectionModelSimpleClass)) +#define E_IS_SELECTION_MODEL_SIMPLE(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), E_SELECTION_MODEL_SIMPLE_TYPE)) +#define E_IS_SELECTION_MODEL_SIMPLE_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), E_SELECTION_MODEL_SIMPLE_TYPE)) typedef struct { ESelectionModelArray parent; @@ -46,7 +46,7 @@ typedef struct { ESelectionModelArrayClass parent_class; } ESelectionModelSimpleClass; -GtkType e_selection_model_simple_get_type (void); +GType e_selection_model_simple_get_type (void); ESelectionModelSimple *e_selection_model_simple_new (void); void e_selection_model_simple_insert_rows (ESelectionModelSimple *esms, |