diff options
author | Javier Jardón <jjardon@gnome.org> | 2010-05-16 00:26:22 +0200 |
---|---|---|
committer | Javier Jardón <jjardon@gnome.org> | 2010-05-16 00:26:22 +0200 |
commit | 8e06ef4f63f73211c732bce788233b32c77a9cdb (patch) | |
tree | aedeafcd23e887932d8194c4e43792a9d07a5a78 /gtk/gtkradioaction.c | |
parent | bddf455874fcc648b8a743fe7616b5f8690108c0 (diff) | |
download | gtk+-8e06ef4f63f73211c732bce788233b32c77a9cdb.tar.gz |
Move documentation to inline comments: GtkRadioAction
Diffstat (limited to 'gtk/gtkradioaction.c')
-rw-r--r-- | gtk/gtkradioaction.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gtk/gtkradioaction.c b/gtk/gtkradioaction.c index e76ff76106..d6363ed1e1 100644 --- a/gtk/gtkradioaction.c +++ b/gtk/gtkradioaction.c @@ -38,6 +38,18 @@ #include "gtkprivate.h" #include "gtkalias.h" + +/** + * SECTION:gtkradioaction + * @Short_description: An action of which only one in a group can be active + * @Title: GtkRadioAction + * + * A #GtkRadioAction is similar to #GtkRadioMenuItem. A number of radio + * actions can be linked together so that only one may be active at any + * one time. + */ + + #define GTK_RADIO_ACTION_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), GTK_TYPE_RADIO_ACTION, GtkRadioActionPrivate)) struct _GtkRadioActionPrivate |