diff options
author | Matthias Clasen <mclasen@redhat.com> | 2014-02-09 17:24:06 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2014-02-09 17:58:07 -0500 |
commit | 7f6a964c47ad2f9dcf6a00044d938840ce8f01f2 (patch) | |
tree | 89fdaf3a0f7ee34d49449c9ac241460b6a06616e /gtk/gtktoolpalette.c | |
parent | ab0574a88bc0105f6d7374a0f305fe5f0aaeb027 (diff) | |
download | gtk+-7f6a964c47ad2f9dcf6a00044d938840ce8f01f2.tar.gz |
Docs: Remove all entities and turn off sgml mode
With all element markup gone, it is time to turn off
sgml mode, and get rid of entities as well.
Diffstat (limited to 'gtk/gtktoolpalette.c')
-rw-r--r-- | gtk/gtktoolpalette.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gtk/gtktoolpalette.c b/gtk/gtktoolpalette.c index e6f9f6b981..385557eaba 100644 --- a/gtk/gtktoolpalette.c +++ b/gtk/gtktoolpalette.c @@ -43,12 +43,12 @@ * @Short_description: A tool palette with categories * @Title: GtkToolPalette * - * A #GtkToolPalette allows you to add #GtkToolItem<!-- -->s to a palette-like + * A #GtkToolPalette allows you to add #GtkToolItems to a palette-like * container with different categories and drag and drop support. * * A #GtkToolPalette is created with a call to gtk_tool_palette_new(). * - * #GtkToolItem<!-- -->s cannot be added directly to a #GtkToolPalette - + * #GtkToolItems cannot be added directly to a #GtkToolPalette - * instead they are added to a #GtkToolItemGroup which can than be added * to a #GtkToolPalette. To add a #GtkToolItemGroup to a #GtkToolPalette, * use gtk_container_add(). @@ -86,14 +86,14 @@ * GtkWidget *palette; * GtkWidget *item; * - * /<!-- -->* Get the dragged item *<!-- -->/ + * /* Get the dragged item */ * palette = gtk_widget_get_ancestor (gtk_drag_get_source_widget (context), * GTK_TYPE_TOOL_PALETTE); * if (palette != NULL) * item = gtk_tool_palette_get_drag_item (GTK_TOOL_PALETTE (palette), * selection); * - * /<!-- -->* Do something with item *<!-- -->/ + * /* Do something with item */ * } * * GtkWidget *target, palette; @@ -1624,7 +1624,7 @@ gtk_tool_palette_set_drag_source (GtkToolPalette *palette, * on that widget * @targets: the #GtkToolPaletteDragTargets which the widget * should support - * @actions: the #GdkDragAction<!-- -->s which the widget should suppport + * @actions: the #GdkDragActions which the widget should suppport * * Sets @palette as drag source (see gtk_tool_palette_set_drag_source()) * and sets @widget as a drag destination for drags from @palette. |