diff options
author | Chris Toshok <toshok@ximian.com> | 2002-11-14 04:20:01 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2002-11-14 04:20:01 +0800 |
commit | cd31ceb85fc5d5f14bb7f1867851e2853fd0ab77 (patch) | |
tree | ce326dacf554af3142314e69f128c4b75b5fe2a5 /widgets/menus/gal-view-instance.h | |
parent | 422f99755f1f214a44dc66791007ce516594c237 (diff) | |
download | gsoc2013-evolution-cd31ceb85fc5d5f14bb7f1867851e2853fd0ab77.tar gsoc2013-evolution-cd31ceb85fc5d5f14bb7f1867851e2853fd0ab77.tar.gz gsoc2013-evolution-cd31ceb85fc5d5f14bb7f1867851e2853fd0ab77.tar.bz2 gsoc2013-evolution-cd31ceb85fc5d5f14bb7f1867851e2853fd0ab77.tar.lz gsoc2013-evolution-cd31ceb85fc5d5f14bb7f1867851e2853fd0ab77.tar.xz gsoc2013-evolution-cd31ceb85fc5d5f14bb7f1867851e2853fd0ab77.tar.zst gsoc2013-evolution-cd31ceb85fc5d5f14bb7f1867851e2853fd0ab77.zip |
start porting to GObject.
2002-11-13 Chris Toshok <toshok@ximian.com>
* gal-view-collection.[ch]: start porting to GObject.
* gal-view-etable.[ch]: same.
* gal-view-factory-etable.[ch]: same.
* gal-view-factory.[ch]: same.
* gal-view-factory.[ch]: same.
* gal-view-instance.[ch]: same.
* gal-view.[ch]: same.
svn path=/trunk/; revision=18745
Diffstat (limited to 'widgets/menus/gal-view-instance.h')
-rw-r--r-- | widgets/menus/gal-view-instance.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/widgets/menus/gal-view-instance.h b/widgets/menus/gal-view-instance.h index bc396af231..05723a2ea6 100644 --- a/widgets/menus/gal-view-instance.h +++ b/widgets/menus/gal-view-instance.h @@ -31,13 +31,13 @@ G_BEGIN_DECLS #define GAL_VIEW_INSTANCE_TYPE (gal_view_instance_get_type ()) -#define GAL_VIEW_INSTANCE(o) (GTK_CHECK_CAST ((o), GAL_VIEW_INSTANCE_TYPE, GalViewInstance)) -#define GAL_VIEW_INSTANCE_CLASS(k) (GTK_CHECK_CLASS_CAST((k), GAL_VIEW_INSTANCE_TYPE, GalViewInstanceClass)) -#define GAL_IS_VIEW_INSTANCE(o) (GTK_CHECK_TYPE ((o), GAL_VIEW_INSTANCE_TYPE)) -#define GAL_IS_VIEW_INSTANCE_CLASS(k) (GTK_CHECK_CLASS_TYPE ((k), GAL_VIEW_INSTANCE_TYPE)) +#define GAL_VIEW_INSTANCE(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), GAL_VIEW_INSTANCE_TYPE, GalViewInstance)) +#define GAL_VIEW_INSTANCE_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), GAL_VIEW_INSTANCE_TYPE, GalViewInstanceClass)) +#define GAL_IS_VIEW_INSTANCE(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), GAL_VIEW_INSTANCE_TYPE)) +#define GAL_IS_VIEW_INSTANCE_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), GAL_VIEW_INSTANCE_TYPE)) typedef struct { - GtkObject base; + GObject base; GalViewCollection *collection; @@ -59,7 +59,7 @@ typedef struct { } GalViewInstance; typedef struct { - GtkObjectClass parent_class; + GObjectClass parent_class; /* * Signals @@ -70,7 +70,7 @@ typedef struct { } GalViewInstanceClass; /* Standard functions */ -GtkType gal_view_instance_get_type (void); +GType gal_view_instance_get_type (void); /* */ /*collection should be loaded when you call this. |