diff options
author | Christopher James Lahey <clahey@ximian.com> | 2001-02-17 16:38:17 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2001-02-17 16:38:17 +0800 |
commit | 044ffd870ee8223967439aa5217936e3e1b8500c (patch) | |
tree | ce7695b8e88e7da7d50875871be2359c6a3c680c /widgets/menus/gal-view.h | |
parent | 5480b1b7bdc26136ddb111e9f9a60e7b879c2d13 (diff) | |
download | gsoc2013-evolution-044ffd870ee8223967439aa5217936e3e1b8500c.tar.gz gsoc2013-evolution-044ffd870ee8223967439aa5217936e3e1b8500c.tar.zst gsoc2013-evolution-044ffd870ee8223967439aa5217936e3e1b8500c.zip |
From a patch submitted by Murray Cumming <Murray.Cumming@mybau.com>
2001-02-17 Christopher James Lahey <clahey@ximian.com>
From a patch submitted by Murray Cumming <Murray.Cumming@mybau.com>
* gal-define-views-model.h, gal-view-collection.h,
gal-view-etable.h, gal-view-factory-etable.h, gal-view-factory.h,
gal-view.h: Added GNOME_DECLS.
svn path=/trunk/; revision=8266
Diffstat (limited to 'widgets/menus/gal-view.h')
-rw-r--r-- | widgets/menus/gal-view.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/widgets/menus/gal-view.h b/widgets/menus/gal-view.h index 6302df2057..5cc7cc679c 100644 --- a/widgets/menus/gal-view.h +++ b/widgets/menus/gal-view.h @@ -5,6 +5,10 @@ #include <gtk/gtkobject.h> #include <gnome-xml/tree.h> +#ifdef __cplusplus +extern "C" { +#endif /* __cplusplus */ + #define GAL_VIEW_TYPE (gal_view_get_type ()) #define GAL_VIEW(o) (GTK_CHECK_CAST ((o), GAL_VIEW_TYPE, GalView)) #define GAL_VIEW_CLASS(k) (GTK_CHECK_CLASS_CAST((k), GAL_VIEW_TYPE, GalViewClass)) @@ -63,4 +67,8 @@ GalView *gal_view_clone (GalView *view); void gal_view_changed (GalView *view); +#ifdef __cplusplus +} +#endif /* __cplusplus */ + #endif /* _GAL_VIEW_H_ */ |