diff options
author | William Jon McCann <william.jon.mccann@gmail.com> | 2014-01-27 14:55:18 -0500 |
---|---|---|
committer | William Jon McCann <william.jon.mccann@gmail.com> | 2014-01-29 12:45:49 -0500 |
commit | 4c8bd8e7cf2a4850ad3aac83c0f3d6eb9c5540bd (patch) | |
tree | 6538e74167af906319ea494a08d831881fea5365 /gtk/gtkspinbutton.c | |
parent | 768bc44081550be18ee19697ed36b5f92298ef11 (diff) | |
download | gtk+-4c8bd8e7cf2a4850ad3aac83c0f3d6eb9c5540bd.tar.gz |
docs: Identify examples that are C code
https://bugzilla.gnome.org/show_bug.cgi?id=723119
Diffstat (limited to 'gtk/gtkspinbutton.c')
-rw-r--r-- | gtk/gtkspinbutton.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtkspinbutton.c b/gtk/gtkspinbutton.c index 5ef8e7daa1..5734d2cbe2 100644 --- a/gtk/gtkspinbutton.c +++ b/gtk/gtkspinbutton.c @@ -80,7 +80,7 @@ * * <example> * <title>Using a GtkSpinButton to get an integer</title> - * |[ + * |[<!-- language="C" --> * /* Provides a function to retrieve an integer value from a * * GtkSpinButton and creates a spin button to model percentage * * values. @@ -116,7 +116,7 @@ * * <example> * <title>Using a GtkSpinButton to get a floating point value</title> - * |[ + * |[<!-- language="C" --> * /* Provides a function to retrieve a floating point value from a * * GtkSpinButton, and creates a high precision spin button. * */ @@ -458,7 +458,7 @@ gtk_spin_button_class_init (GtkSpinButtonClass *class) * * The ::output signal can be used to change to formatting * of the value that is displayed in the spin buttons entry. - * |[ + * |[<!-- language="C" --> * /* show leading zeros */ * static gboolean * on_output (GtkSpinButton *spin, |