diff options
author | Matthias Clasen <maclas@gmx.de> | 2003-10-11 21:24:10 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2003-10-11 21:24:10 +0000 |
commit | c44e5b00e0cc038b6b9a594ee6c9c9c816c69f0c (patch) | |
tree | f0e16b60a77a5a9ab83dafbc3d02d81f433bed46 /gtk/gtkactiongroup.h | |
parent | 407e957c04fa76e1ce195bb5f6392e49a3b013ed (diff) | |
download | gdk-pixbuf-c44e5b00e0cc038b6b9a594ee6c9c9c816c69f0c.tar.gz |
Add G_BEGIN_DECLS/G_END_DECLS to make these usable in C++. (#124351,
Sat Oct 11 23:14:36 2003 Matthias Clasen <maclas@gmx.de>
* gtk/gtkactiongroup.h:
* gtk/gtkaction.h:
* gtk/gtkradioaction.h:
* gtk/gtkradiotoolbutton.h:
* gtk/gtkseparatortoolitem.h:
* gtk/gtktoggleaction.h:
* gtk/gtktoolitem.h:
* gtk/gtkuimanager.h: Add G_BEGIN_DECLS/G_END_DECLS to make
these usable in C++. (#124351, Murray Cumming)
Diffstat (limited to 'gtk/gtkactiongroup.h')
-rw-r--r-- | gtk/gtkactiongroup.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gtk/gtkactiongroup.h b/gtk/gtkactiongroup.h index 22d99f48d..7d8b4be20 100644 --- a/gtk/gtkactiongroup.h +++ b/gtk/gtkactiongroup.h @@ -33,6 +33,8 @@ #include <gtk/gtkaction.h> #include <gtk/gtkitemfactory.h> /* for GtkTranslateFunc */ +G_BEGIN_DECLS + #define GTK_TYPE_ACTION_GROUP (gtk_action_group_get_type ()) #define GTK_ACTION_GROUP(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_ACTION_GROUP, GtkActionGroup)) #define GTK_ACTION_GROUP_CLASS(vtable) (G_TYPE_CHECK_CLASS_CAST ((vtable), GTK_TYPE_ACTION_GROUP, GtkActionGroupClass)) @@ -149,5 +151,6 @@ void gtk_action_group_set_translate_func (GtkActionGroup * void gtk_action_group_set_translation_domain (GtkActionGroup *action_group, const gchar *domain); +G_END_DECLS #endif /* __GTK_ACTION_GROUP_H__ */ |