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-factory.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-factory.h')
-rw-r--r-- | widgets/menus/gal-view-factory.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/widgets/menus/gal-view-factory.h b/widgets/menus/gal-view-factory.h index 724235d7a6..dd828145e5 100644 --- a/widgets/menus/gal-view-factory.h +++ b/widgets/menus/gal-view-factory.h @@ -5,6 +5,10 @@ #include <gtk/gtkobject.h> #include <gal/menus/gal-view.h> +#ifdef __cplusplus +extern "C" { +#endif /* __cplusplus */ + #define GAL_VIEW_FACTORY_TYPE (gal_view_factory_get_type ()) #define GAL_VIEW_FACTORY(o) (GTK_CHECK_CAST ((o), GAL_VIEW_FACTORY_TYPE, GalViewFactory)) #define GAL_VIEW_FACTORY_CLASS(k) (GTK_CHECK_CLASS_CAST((k), GAL_VIEW_FACTORY_TYPE, GalViewFactoryClass)) @@ -44,4 +48,9 @@ const char *gal_view_factory_get_type_code (GalViewFactory *factory); GalView *gal_view_factory_new_view (GalViewFactory *factory, const char *name); +#ifdef __cplusplus +} +#endif /* __cplusplus */ + + #endif /* _GAL_VIEW_FACTORY_H_ */ |