[clutter/wip/actor-content: 24/24] Fix up the Since annotations



commit 54ae0b66a66c125a51e571a8d13043abea5c7292
Author: Emmanuele Bassi <ebassi linux intel com>
Date:   Fri Apr 15 15:07:44 2011 +0100

    Fix up the Since annotations

 clutter/clutter-image-loader.c |   14 +++++++-------
 clutter/clutter-image-loader.h |    6 +++---
 clutter/clutter-image.c        |   24 ++++++++++++------------
 clutter/clutter-image.h        |    8 ++++----
 clutter/clutter-rgba.c         |   40 ++++++++++++++++++++--------------------
 clutter/clutter-rgba.h         |    2 +-
 6 files changed, 47 insertions(+), 47 deletions(-)
---
diff --git a/clutter/clutter-image-loader.c b/clutter/clutter-image-loader.c
index e597694..48ea287 100644
--- a/clutter/clutter-image-loader.c
+++ b/clutter/clutter-image-loader.c
@@ -31,7 +31,7 @@
  * points. It is an opaque class that delegates the logic for loading
  * image data synchronously and asynchronously to #ClutterImage.
  *
- * #ClutterImageLoader is available since Clutter 1.6
+ * #ClutterImageLoader is available since Clutter 1.8
  */
 
 #include "config.h"
@@ -103,7 +103,7 @@ get_default_image_loader (gpointer data)
  *
  * Return value: the newly created #ClutterImageLoader proxy
  *
- * Since: 1.6
+ * Since: 1.8
  */
 ClutterImageLoader *
 _clutter_image_loader_new (void)
@@ -138,7 +138,7 @@ _clutter_image_loader_new (void)
  *
  * Queries the size of the loaded image.
  *
- * Since: 1.6
+ * Since: 1.8
  */
 void
 _clutter_image_loader_get_image_size (ClutterImageLoader *loader,
@@ -161,7 +161,7 @@ _clutter_image_loader_get_image_size (ClutterImageLoader *loader,
  * Return value: (transfer none): a pointer to the texture handle.
  *   The #ClutterImageLoader owns the returned handle
  *
- * Since: 1.6
+ * Since: 1.8
  */
 CoglHandle
 _clutter_image_loader_get_texture_handle (ClutterImageLoader *loader)
@@ -182,7 +182,7 @@ _clutter_image_loader_get_texture_handle (ClutterImageLoader *loader)
  *
  * Return value: %TRUE if the image data was successfully loaded
  *
- * Since: 1.6
+ * Since: 1.8
  */
 gboolean
 _clutter_image_loader_load_stream (ClutterImageLoader  *loader,
@@ -213,7 +213,7 @@ _clutter_image_loader_load_stream (ClutterImageLoader  *loader,
  *
  * When done, @callback will be invoked.
  *
- * Since: 1.6
+ * Since: 1.8
  */
 void
 _clutter_image_loader_load_stream_async (ClutterImageLoader  *loader,
@@ -246,7 +246,7 @@ _clutter_image_loader_load_stream_async (ClutterImageLoader  *loader,
  * Return value: %TRUE if the image loading was successful
  *   and %FALSE otherwise
  *
- * Since: 1.6
+ * Since: 1.8
  */
 gboolean
 _clutter_image_loader_load_stream_finish (ClutterImageLoader  *loader,
diff --git a/clutter/clutter-image-loader.h b/clutter/clutter-image-loader.h
index 49dc142..016f29f 100644
--- a/clutter/clutter-image-loader.h
+++ b/clutter/clutter-image-loader.h
@@ -48,7 +48,7 @@ G_BEGIN_DECLS
  * Evaluates to the extension point name that can be used by modules
  * to provide the implementation of image loading logic.
  *
- * Since: 1.6
+ * Since: 1.8
  */
 #define CLUTTER_IMAGE_LOADER_EXTENSION_POINT_NAME       "clutter-image-loader"
 
@@ -61,7 +61,7 @@ typedef struct _ClutterImageLoaderClass         ClutterImageLoaderClass;
  * The <structname>ClutterImageLoader</structname> structure contains
  * only private data and should be accessed using the provided API.
  *
- * Since: 1.6
+ * Since: 1.8
  */
 struct _ClutterImageLoader
 {
@@ -75,7 +75,7 @@ struct _ClutterImageLoader
  * The <structname>ClutterImageLoaderClass</structname> structure
  * contains only private data.
  *
- * Since: 1.6
+ * Since: 1.8
  */
 struct _ClutterImageLoaderClass
 {
diff --git a/clutter/clutter-image.c b/clutter/clutter-image.c
index 67cef2d..02027f9 100644
--- a/clutter/clutter-image.c
+++ b/clutter/clutter-image.c
@@ -36,7 +36,7 @@
  * #ClutterImage implements the #ClutterContent interface, and it
  * can be assigned to any actor using clutter_actor_set_content().
  *
- * #ClutterImage is available since Clutter 1.6
+ * #ClutterImage is available since Clutter 1.8
  */
 
 #ifdef HAVE_CONFIG_H
@@ -206,7 +206,7 @@ clutter_image_class_init (ClutterImageClass *klass)
    *
    * The width of the image data, in pixels.
    *
-   * Since: 1.6
+   * Since: 1.8
    */
   image_props[PROP_WIDTH] =
     g_param_spec_int ("width",
@@ -221,7 +221,7 @@ clutter_image_class_init (ClutterImageClass *klass)
    *
    * The height of the image data, in pixels.
    *
-   * Since: 1.6
+   * Since: 1.8
    */
   image_props[PROP_HEIGHT] =
     g_param_spec_int ("height",
@@ -249,7 +249,7 @@ clutter_image_class_init (ClutterImageClass *klass)
    * The default implementation will automatically invalidate @image
    * and queue a redraw.
    *
-   * Since: 1.6
+   * Since: 1.8
    */
   image_signals[SIZE_CHANGED] =
     g_signal_new (I_("size-changed"),
@@ -272,7 +272,7 @@ clutter_image_class_init (ClutterImageClass *klass)
    * The default implementation will automatically invalidate @image
    * and queue a redraw.
    *
-   * Since: 1.6
+   * Since: 1.8
    */
   image_signals[IMAGE_CHANGED] =
     g_signal_new (I_("image-changed"),
@@ -305,7 +305,7 @@ clutter_image_init (ClutterImage *image)
  *
  * Return value: (transfer full): the newly created #ClutterImage instance
  *
- * Since: 1.6
+ * Since: 1.8
  */
 ClutterImage *
 clutter_image_new (void)
@@ -321,7 +321,7 @@ clutter_image_new (void)
  *
  * Retrieves the size of the image data held by @image.
  *
- * Since: 1.6
+ * Since: 1.8
  */
 void
 clutter_image_get_size (ClutterImage *image,
@@ -352,7 +352,7 @@ clutter_image_get_size (ClutterImage *image,
  * Return value: %TRUE if the image data was successfully loaded
  *   and %FALSE otherwise
  *
- * Since: 1.6
+ * Since: 1.8
  */
 gboolean
 clutter_image_load_from_data (ClutterImage     *image,
@@ -451,7 +451,7 @@ clutter_image_load_from_data (ClutterImage     *image,
  *
  * Return value: %TRUE if the loading was successful, and %FALSE otherwise
  *
- * Since: 1.6
+ * Since: 1.8
  */
 gboolean
 clutter_image_load (ClutterImage  *image,
@@ -684,7 +684,7 @@ async_read_complete (GObject      *gobject,
  * called; it is the responsability of the developer to call
  * clutter_image_load_finish() inside @callback.
  *
- * Since: 1.6
+ * Since: 1.8
  */
 void
 clutter_image_load_async (ClutterImage        *image,
@@ -732,7 +732,7 @@ clutter_image_load_async (ClutterImage        *image,
  * Return value: %TRUE if the image data was loaded successfully
  *   and %FALSE otherwise
  *
- * Since: 1.6
+ * Since: 1.8
  */
 gboolean
 clutter_image_load_finish (ClutterImage  *image,
@@ -847,7 +847,7 @@ clutter_image_error_quark (void)
  * Return value: (transfer none): a pointer to a Cogl texture handle,
  *   or %NULL
  *
- * Since: 1.6
+ * Since: 1.8
  */
 CoglHandle
 clutter_image_get_cogl_texture (ClutterImage *image)
diff --git a/clutter/clutter-image.h b/clutter/clutter-image.h
index b8518eb..6dfbd5a 100644
--- a/clutter/clutter-image.h
+++ b/clutter/clutter-image.h
@@ -47,7 +47,7 @@ G_BEGIN_DECLS
  *
  * Error domain for #ClutterImage errors.
  *
- * Since: 1.6
+ * Since: 1.8
  */
 #define CLUTTER_IMAGE_ERROR             (clutter_image_error_quark ())
 
@@ -61,7 +61,7 @@ typedef struct _ClutterImageClass       ClutterImageClass;
  *
  * Error enumeration for #ClutterImage
  *
- * Since: 1.6
+ * Since: 1.8
  */
 typedef enum {
   CLUTTER_IMAGE_ERROR_INVALID_DATA
@@ -73,7 +73,7 @@ typedef enum {
  * The <structname>ClutterImage</structname> structure contains only private
  * data and should be accessed using the provided API.
  *
- * Since: 1.6
+ * Since: 1.8
  */
 struct _ClutterImage
 {
@@ -94,7 +94,7 @@ struct _ClutterImage
  * The <structname>ClutterImageClass</structname> structure contains only
  * private data.
  *
- * Since: 1.6
+ * Since: 1.8
  */
 struct _ClutterImageClass
 {
diff --git a/clutter/clutter-rgba.c b/clutter/clutter-rgba.c
index 7e84e83..c9d4ca4 100644
--- a/clutter/clutter-rgba.c
+++ b/clutter/clutter-rgba.c
@@ -31,7 +31,7 @@
  * can be used to paint a solid color covering the same area as the allocation
  * of the #ClutterActor<!-- -->s that use it as their content.
  *
- * #ClutterRGBA is available since Clutter 1.6.
+ * #ClutterRGBA is available since Clutter 1.8.
  */
 
 #ifdef HAVE_CONFIG_H
@@ -193,7 +193,7 @@ clutter_rgba_class_init (ClutterRGBAClass *klass)
    *
    * The intensity of the red channel.
    *
-   * Since: 1.6
+   * Since: 1.8
    */
   obj_props[PROP_RED] =
     g_param_spec_double ("red",
@@ -208,7 +208,7 @@ clutter_rgba_class_init (ClutterRGBAClass *klass)
    *
    * The intensity of the green channel.
    *
-   * Since: 1.6
+   * Since: 1.8
    */
   obj_props[PROP_GREEN] =
     g_param_spec_double ("green",
@@ -223,7 +223,7 @@ clutter_rgba_class_init (ClutterRGBAClass *klass)
    *
    * The intensity of the blue channel.
    *
-   * Since: 1.6
+   * Since: 1.8
    */
   obj_props[PROP_BLUE] =
     g_param_spec_double ("blue",
@@ -238,7 +238,7 @@ clutter_rgba_class_init (ClutterRGBAClass *klass)
    *
    * The opacity of the color.
    *
-   * Since: 1.6
+   * Since: 1.8
    */
   obj_props[PROP_ALPHA] =
     g_param_spec_double ("alpha",
@@ -253,7 +253,7 @@ clutter_rgba_class_init (ClutterRGBAClass *klass)
    *
    * Sets all the channels of a #ClutterRGBA using a #ClutterColor.
    *
-   * Since: 1.6
+   * Since: 1.8
    */
   obj_props[PROP_COLOR] =
     clutter_param_spec_color ("color",
@@ -268,7 +268,7 @@ clutter_rgba_class_init (ClutterRGBAClass *klass)
    * Sets all the channels of a #ClutterRGBA using a string that
    * can be parsed by clutter_color_from_string().
    *
-   * Since: 1.6
+   * Since: 1.8
    */
   obj_props[PROP_STRING] =
     g_param_spec_string ("string",
@@ -300,7 +300,7 @@ clutter_rgba_init (ClutterRGBA *self)
  *
  * Return value: (transfer full): the newly created #ClutterRGBA instance.
  *
- * Since: 1.6
+ * Since: 1.8
  */
 ClutterContent *
 clutter_rgba_new (gdouble red,
@@ -325,7 +325,7 @@ clutter_rgba_new (gdouble red,
  *
  * Return value: (transfer full): the newly created #ClutterRGBA instance.
  *
- * Since: 1.6
+ * Since: 1.8
  */
 ClutterContent *
 clutter_rgba_new_from_color (const ClutterColor *color)
@@ -344,7 +344,7 @@ clutter_rgba_new_from_color (const ClutterColor *color)
  *
  * Return value: (transfer full): the newly created #ClutterRGBA instance
  *
- * Since: 1.6
+ * Since: 1.8
  */
 ClutterContent *
 clutter_rgba_new_from_string (const gchar *string)
@@ -361,7 +361,7 @@ clutter_rgba_new_from_string (const gchar *string)
  *
  * Sets the intensity of the red channel of a #ClutterRGBA.
  *
- * Since: 1.6
+ * Since: 1.8
  */
 void
 clutter_rgba_set_red (ClutterRGBA *self,
@@ -387,7 +387,7 @@ clutter_rgba_set_red (ClutterRGBA *self,
  *
  * Return value: the intensity, between 0.0 and 1.0
  *
- * Since: 1.6
+ * Since: 1.8
  */
 gdouble
 clutter_rgba_get_red (ClutterRGBA *self)
@@ -404,7 +404,7 @@ clutter_rgba_get_red (ClutterRGBA *self)
  *
  * Sets the intensity of the green channel of a #ClutterRGBA.
  *
- * Since: 1.6
+ * Since: 1.8
  */
 void
 clutter_rgba_set_green (ClutterRGBA *self,
@@ -430,7 +430,7 @@ clutter_rgba_set_green (ClutterRGBA *self,
  *
  * Return value: the intensity, between 0.0 and 1.0
  *
- * Since: 1.6
+ * Since: 1.8
  */
 gdouble
 clutter_rgba_get_green (ClutterRGBA *self)
@@ -447,7 +447,7 @@ clutter_rgba_get_green (ClutterRGBA *self)
  *
  * Sets the intensity of the blue channel of a #ClutterRGBA.
  *
- * Since: 1.6
+ * Since: 1.8
  */
 void
 clutter_rgba_set_blue (ClutterRGBA *self,
@@ -473,7 +473,7 @@ clutter_rgba_set_blue (ClutterRGBA *self,
  *
  * Return value: the intensity, between 0.0 and 1.0
  *
- * Since: 1.6
+ * Since: 1.8
  */
 gdouble
 clutter_rgba_get_blue (ClutterRGBA *self)
@@ -490,7 +490,7 @@ clutter_rgba_get_blue (ClutterRGBA *self)
  *
  * Sets the opacity of a #ClutterRGBA.
  *
- * Since: 1.6
+ * Since: 1.8
  */
 void
 clutter_rgba_set_alpha (ClutterRGBA *self,
@@ -516,7 +516,7 @@ clutter_rgba_set_alpha (ClutterRGBA *self,
  *
  * Return value: the opacity, between 0.0 and 1.0
  *
- * Since: 1.6
+ * Since: 1.8
  */
 gdouble
 clutter_rgba_get_alpha (ClutterRGBA *self)
@@ -533,7 +533,7 @@ clutter_rgba_get_alpha (ClutterRGBA *self)
  *
  * Sets the channels of a #ClutterRGBA using a #ClutterColor.
  *
- * Since: 1.6
+ * Since: 1.8
  */
 void
 clutter_rgba_set_color (ClutterRGBA        *self,
@@ -564,7 +564,7 @@ clutter_rgba_set_color (ClutterRGBA        *self,
  *
  * Sets the channels of a #ClutterRGBA using a @string definition.
  *
- * Since: 1.6
+ * Since: 1.8
  */
 void
 clutter_rgba_set_string (ClutterRGBA *self,
diff --git a/clutter/clutter-rgba.h b/clutter/clutter-rgba.h
index ae87866..c54fe37 100644
--- a/clutter/clutter-rgba.h
+++ b/clutter/clutter-rgba.h
@@ -43,7 +43,7 @@ G_BEGIN_DECLS
  * <structname>ClutterRGBA</structname> is an opaque structure whose
  * members cannot be directly accessed.
  *
- * Since: 1.6
+ * Since: 1.8
  */
 typedef struct _ClutterRGBA             ClutterRGBA;
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]