diff options
author | Stefano Karapetsas <[email protected]> | 2014-06-26 13:20:33 +0200 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2014-06-26 13:20:33 +0200 |
commit | 2e6259e8176c8ba29800c2716caa10d726e38ac3 (patch) | |
tree | 1358759e377e639eaf10dd30e68feb858f56d20e /libmate-desktop/mate-colorbutton.c | |
parent | 1d630a530de8cafd7f4dc1a0a225a0fa335893de (diff) | |
download | mate-desktop-2e6259e8176c8ba29800c2716caa10d726e38ac3.tar.bz2 mate-desktop-2e6259e8176c8ba29800c2716caa10d726e38ac3.tar.xz |
libmate-desktop: Fix Since: occurrences in comments copied from Gtk+
Diffstat (limited to 'libmate-desktop/mate-colorbutton.c')
-rw-r--r-- | libmate-desktop/mate-colorbutton.c | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/libmate-desktop/mate-colorbutton.c b/libmate-desktop/mate-colorbutton.c index e7a36d4..a2987b7 100644 --- a/libmate-desktop/mate-colorbutton.c +++ b/libmate-desktop/mate-colorbutton.c @@ -147,7 +147,7 @@ mate_color_button_class_init (MateColorButtonClass *klass) * checkerboard background to show its opacity and the opacity slider is displayed in the * color selection dialog. * - * Since: 2.4 + * Since: 1.9.1 */ g_object_class_install_property (gobject_class, PROP_USE_ALPHA, @@ -161,7 +161,7 @@ mate_color_button_class_init (MateColorButtonClass *klass) * * The title of the color selection dialog * - * Since: 2.4 + * Since: 1.9.1 */ g_object_class_install_property (gobject_class, PROP_TITLE, @@ -176,7 +176,7 @@ mate_color_button_class_init (MateColorButtonClass *klass) * * The selected color. * - * Since: 2.4 + * Since: 1.9.1 */ g_object_class_install_property (gobject_class, PROP_COLOR, @@ -191,7 +191,7 @@ mate_color_button_class_init (MateColorButtonClass *klass) * * The selected opacity value (0 fully transparent, 65535 fully opaque). * - * Since: 2.4 + * Since: 1.9.1 */ g_object_class_install_property (gobject_class, PROP_ALPHA, @@ -213,7 +213,7 @@ mate_color_button_class_init (MateColorButtonClass *klass) * changes the color. If you need to react to programmatic color changes * as well, use the notify::color signal. * - * Since: 2.4 + * Since: 1.9.1 */ color_button_signals[COLOR_SET] = g_signal_new ("color-set", G_TYPE_FROM_CLASS (gobject_class), @@ -523,7 +523,7 @@ mate_color_button_finalize (GObject *object) * * Returns: a new color button. * - * Since: 2.4 + * Since: 1.9.1 */ GtkWidget * mate_color_button_new (void) @@ -539,7 +539,7 @@ mate_color_button_new (void) * * Returns: a new color button. * - * Since: 2.4 + * Since: 1.9.1 */ GtkWidget * mate_color_button_new_with_color (const GdkColor *color) @@ -651,7 +651,7 @@ mate_color_button_clicked (GtkButton *button) * * Sets the current color to be @color. * - * Since: 2.4 + * Since: 1.9.1 **/ void mate_color_button_set_color (MateColorButton *color_button, @@ -703,7 +703,7 @@ mate_color_button_set_rgba (MateColorButton *color_button, * * Sets the current opacity to be @alpha. * - * Since: 2.4 + * Since: 1.9.1 **/ void mate_color_button_set_alpha (MateColorButton *color_button, @@ -725,7 +725,7 @@ mate_color_button_set_alpha (MateColorButton *color_button, * * Sets @color to be the current color in the #MateColorButton widget. * - * Since: 2.4 + * Since: 1.9.1 **/ void mate_color_button_get_color (MateColorButton *color_button, @@ -768,7 +768,7 @@ mate_color_button_get_rgba (MateColorButton *color_button, * * Return value: an integer between 0 and 65535. * - * Since: 2.4 + * Since: 1.9.1 **/ guint16 mate_color_button_get_alpha (MateColorButton *color_button) @@ -785,7 +785,7 @@ mate_color_button_get_alpha (MateColorButton *color_button) * * Sets whether or not the color button should use the alpha channel. * - * Since: 2.4 + * Since: 1.9.1 */ void mate_color_button_set_use_alpha (MateColorButton *color_button, @@ -813,7 +813,7 @@ mate_color_button_set_use_alpha (MateColorButton *color_button, * * Returns: %TRUE if the color sample uses alpha channel, %FALSE if not. * - * Since: 2.4 + * Since: 1.9.1 */ gboolean mate_color_button_get_use_alpha (MateColorButton *color_button) @@ -831,7 +831,7 @@ mate_color_button_get_use_alpha (MateColorButton *color_button) * * Sets the title for the color selection dialog. * - * Since: 2.4 + * Since: 1.9.1 */ void mate_color_button_set_title (MateColorButton *color_button, @@ -860,7 +860,7 @@ mate_color_button_set_title (MateColorButton *color_button, * * Returns: An internal string, do not free the return value * - * Since: 2.4 + * Since: 1.9.1 */ const gchar * mate_color_button_get_title (MateColorButton *color_button) |