From: Emmanuele Bassi Date: Tue, 28 Jul 2009 17:21:56 +0000 (+0100) Subject: [docs] Update the Since tags X-Git-Url: http://vcs.maemo.org/git/?a=commitdiff_plain;h=40f2d1217972431ee15063ffd6211c71a1b99105;hp=ccfd7d394f1c94150a29bf4774906c5ab4f13a88;p=clutter-gtk [docs] Update the Since tags The next stable release of clutter-gtk is going to be 0.10. --- diff --git a/clutter-gtk/gtk-clutter-scrollable.c b/clutter-gtk/gtk-clutter-scrollable.c index 6fea476..28bf5c7 100644 --- a/clutter-gtk/gtk-clutter-scrollable.c +++ b/clutter-gtk/gtk-clutter-scrollable.c @@ -10,9 +10,10 @@ * SECTION:gtk-clutter-scrollable * @short_description: Interface for scrollable actors * - * FIXME + * #GtkClutterScrollable is an interface for scrollable actors, reusing + * the #GtkAdjustment objects from GTK+ do drive the scrolling. * - * #GtkClutterScrollable is available since Clutter-GTK 1.0 + * #GtkClutterScrollable is available since Clutter-GTK 0.10 */ static void @@ -30,7 +31,7 @@ gtk_clutter_scrollable_base_init (gpointer g_iface) * The #GtkAdjustment that determines the value of the * horizontal position for this scrollable actor. * - * Since: 1.0 + * Since: 0.10 */ pspec = g_param_spec_object ("hadjustment", "Horizontal adjustment", @@ -47,7 +48,7 @@ gtk_clutter_scrollable_base_init (gpointer g_iface) * The #GtkAdjustment that determines the value of the * vertical position for this scrollable actor. * - * Since: 1.0 + * Since: 0.10 */ pspec = g_param_spec_object ("vadjustment", "Vertical adjustment", @@ -93,7 +94,7 @@ gtk_clutter_scrollable_get_type (void) * Sets the horizontal and vertical adjustments used to determine * the position of the scrollable actor. * - * Since: 1.0 + * Since: 0.10 */ void gtk_clutter_scrollable_set_adjustments (GtkClutterScrollable *scrollable, @@ -119,7 +120,7 @@ gtk_clutter_scrollable_set_adjustments (GtkClutterScrollable *scrollable, * Retrieves the horizontal and vertical adjustments used to * determine the position of the scrollable actor. * - * Since: 1.0 + * Since: 0.10 */ void gtk_clutter_scrollable_get_adjustments (GtkClutterScrollable *scrollable, diff --git a/clutter-gtk/gtk-clutter-scrollable.h b/clutter-gtk/gtk-clutter-scrollable.h index e42695b..844e2f8 100644 --- a/clutter-gtk/gtk-clutter-scrollable.h +++ b/clutter-gtk/gtk-clutter-scrollable.h @@ -54,7 +54,7 @@ typedef struct _GtkClutterScrollableIface GtkClutterScrollableIface; * The #GtkClutterScrollableIface structure contains only private data * and should be accessed using the provided functions. * - * Since: 0.8.2 + * Since: 0.10 */ struct _GtkClutterScrollableIface { diff --git a/clutter-gtk/gtk-clutter-util.c b/clutter-gtk/gtk-clutter-util.c index 8dfcf68..c8a4f09 100644 --- a/clutter-gtk/gtk-clutter-util.c +++ b/clutter-gtk/gtk-clutter-util.c @@ -651,7 +651,7 @@ gtk_clutter_init (int *argc, * Return value: %CLUTTER_INIT_SUCCESS on success, a negative integer * on failure. * - * Since: 1.0 + * Since: 0.10 */ ClutterInitError gtk_clutter_init_with_args (int *argc, diff --git a/clutter-gtk/gtk-clutter-util.h b/clutter-gtk/gtk-clutter-util.h index 013da99..9b42e9a 100644 --- a/clutter-gtk/gtk-clutter-util.h +++ b/clutter-gtk/gtk-clutter-util.h @@ -53,7 +53,7 @@ typedef enum { * * An enumeration of error types used in ClutterGtk texture functions * - * Since: 1.0 + * Since: 0.10 * */ typedef enum { CLUTTER_GTK_TEXTURE_INVALID_STOCK_ID, diff --git a/clutter-gtk/gtk-clutter-viewport.c b/clutter-gtk/gtk-clutter-viewport.c index 1d350f1..c2f6a15 100644 --- a/clutter-gtk/gtk-clutter-viewport.c +++ b/clutter-gtk/gtk-clutter-viewport.c @@ -14,7 +14,7 @@ * The #GtkClutterViewport can be used inside any #ClutterContainer * implementation. * - * #GtkClutterViewport is available since Clutter-GTK 1.0 + * #GtkClutterViewport is available since Clutter-GTK 0.10 */ #ifdef HAVE_CONFIG_H @@ -792,7 +792,7 @@ gtk_clutter_viewport_class_init (GtkClutterViewportClass *klass) * * The #ClutterActor inside the viewport. * - * Since: 1.0 + * Since: 0.10 */ pspec = g_param_spec_object ("child", "Child", @@ -808,7 +808,7 @@ gtk_clutter_viewport_class_init (GtkClutterViewportClass *klass) * vertex to convert event coordinates for the child of the * viewport. * - * Since: 1.0 + * Since: 0.10 */ pspec = g_param_spec_boxed ("origin", "Origin", @@ -849,7 +849,7 @@ gtk_clutter_viewport_init (GtkClutterViewport *viewport) * * Return value: the newly created viewport actor * - * Since: 1.0 + * Since: 0.10 */ ClutterActor * gtk_clutter_viewport_new (GtkAdjustment *h_adjust, @@ -873,7 +873,7 @@ gtk_clutter_viewport_new (GtkAdjustment *h_adjust, * Retrieves the current translation factor ("origin") used when * displaying the child of @viewport. * - * Since: 1.0. + * Since: 0.10 */ void gtk_clutter_viewport_get_origin (GtkClutterViewport *viewport, diff --git a/clutter-gtk/gtk-clutter-zoomable.c b/clutter-gtk/gtk-clutter-zoomable.c index 6758ac0..5901059 100644 --- a/clutter-gtk/gtk-clutter-zoomable.c +++ b/clutter-gtk/gtk-clutter-zoomable.c @@ -10,7 +10,9 @@ * SECTION:gtk-clutter-zoomable * @short_description: Interface for zoomable actors * - * FIXME + * #GtkClutterZoomable is an interface for zoomable actors, using, like + * #GtkClutterScrollable, the #GtkAdjustment objects from GTK+ to drive + * the zoom factor. * * #GtkClutterZoomable is available since Clutter-GTK 1.0 */ @@ -30,7 +32,7 @@ gtk_clutter_zoomable_base_init (gpointer g_iface) * The #GtkAdjustment that determines the value of * the zoom factor for this zoomable actor * - * Since: 1.0 + * Since: 0.10 */ pspec = g_param_spec_object ("zadjustment", "Zoom Adjustment", @@ -75,7 +77,7 @@ gtk_clutter_zoomable_get_type (void) * Sets the adjustment used to determine the zoom factor of * the zoomable actor * - * Since: 1.0 + * Since: 0.10 */ void gtk_clutter_zoomable_set_adjustment (GtkClutterZoomable *zoomable, @@ -100,7 +102,7 @@ gtk_clutter_zoomable_set_adjustment (GtkClutterZoomable *zoomable, * * Return value: (transfer none): a #GtkAdjustment * - * Since: 1.0 + * Since: 0.10 */ GtkAdjustment * gtk_clutter_zoomable_get_adjustment (GtkClutterZoomable *zoomable)