[nautilus-actions] Only reference minor version in 'Since:' and 'Deprecated' comments



commit a56f33679aea63a20ef0c49f3ffb15f26361d412
Author: Pierre Wieser <pwieser trychlos org>
Date:   Sat Nov 26 20:37:00 2011 +0100

    Only reference minor version in 'Since:' and 'Deprecated' comments

 ChangeLog                     |   16 ++++++++++++++++
 src/api/na-boxed.h            |    2 +-
 src/api/na-timeout.h          |    6 +++---
 src/core/na-boxed.c           |   34 +++++++++++++++++-----------------
 src/core/na-data-boxed.c      |   18 +++++++++---------
 src/core/na-gconf-migration.c |    2 +-
 src/core/na-gconf-monitor.c   |    4 ++--
 src/core/na-gconf-utils.c     |   14 +++++++-------
 src/core/na-icontext.c        |    4 ++--
 src/core/na-iduplicable.c     |    2 +-
 src/core/na-iprefs.c          |    2 +-
 src/core/na-object-item.c     |    8 ++++----
 src/core/na-object.c          |    4 ++--
 src/core/na-settings.c        |   28 ++++++++++++++--------------
 src/core/na-updater.c         |    2 +-
 15 files changed, 81 insertions(+), 65 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index 141a1d1..ea44f33 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,21 @@
 2011-11-26 Pierre Wieser <pwieser trychlos org>
 
+	* src/api/na-boxed.h:
+	* src/api/na-timeout.h:
+	* src/core/na-boxed.c:
+	* src/core/na-data-boxed.c:
+	* src/core/na-gconf-migration.c:
+	* src/core/na-gconf-monitor.c:
+	* src/core/na-gconf-utils.c:
+	* src/core/na-icontext.c:
+	* src/core/na-iduplicable.c:
+	* src/core/na-iprefs.c:
+	* src/core/na-object-item.c:
+	* src/core/na-object.c:
+	* src/core/na-settings.c:
+	* src/core/na-updater.c: Only reference minor version in 'Since:' and
+	'Deprecated' comments.
+
 	* run-autogen.sh: Change development installation directory to _install.
 
 	* configure.ac: gtk-doc and gnome-doc-utils are no more mandatory packages.
diff --git a/src/api/na-boxed.h b/src/api/na-boxed.h
index 5e4d540..6a57c0a 100644
--- a/src/api/na-boxed.h
+++ b/src/api/na-boxed.h
@@ -40,7 +40,7 @@
  * The NABoxed structure is a way of handling various types of data in an
  * opaque structure.
  *
- * Since: 3.1.0
+ * Since: 3.1
  */
 
 #include <glib-object.h>
diff --git a/src/api/na-timeout.h b/src/api/na-timeout.h
index c81c207..a3d7026 100644
--- a/src/api/na-timeout.h
+++ b/src/api/na-timeout.h
@@ -40,7 +40,7 @@
  * The NATimeout structure is a convenience structure to manage timeout
  * functions.
  *
- * Since: 3.1.0
+ * Since: 3.1
  */
 
 #include <glib-object.h>
@@ -53,7 +53,7 @@ G_BEGIN_DECLS
  *
  * Prototype of the callback function.
  *
- * Since: 3.1.0
+ * Since: 3.1
  */
 typedef void ( *NATimeoutFunc )( void *user_data );
 
@@ -78,7 +78,7 @@ typedef void ( *NATimeoutFunc )( void *user_data );
  * will be triggered as soon as no event will be recorded after @timeout
  * milliseconds of inactivity.
  *
- * Since: 3.1.0
+ * Since: 3.1
  */
 typedef struct {
 	/*< public >*/
diff --git a/src/core/na-boxed.c b/src/core/na-boxed.c
index d21a7b2..c324ea1 100644
--- a/src/core/na-boxed.c
+++ b/src/core/na-boxed.c
@@ -489,7 +489,7 @@ string_to_array( const gchar *string )
  *
  * Set the type of the just-allocated @boxed object.
  *
- * Since: 3.1.0
+ * Since: 3.1
  */
 void
 na_boxed_set_type( NABoxed *boxed, guint type )
@@ -508,7 +508,7 @@ na_boxed_set_type( NABoxed *boxed, guint type )
  *
  * Returns: %TRUE if @a and @b are equal, %FALSE else.
  *
- * Since: 3.1.0
+ * Since: 3.1
  */
 gboolean
 na_boxed_are_equal( const NABoxed *a, const NABoxed *b )
@@ -542,7 +542,7 @@ na_boxed_are_equal( const NABoxed *a, const NABoxed *b )
  * Returns: a copy of @boxed, as a newly allocated #NABoxed which should
  * be g_object_unref() by the caller.
  *
- * Since: 3.1.0
+ * Since: 3.1
  */
 NABoxed *
 na_boxed_copy( const NABoxed *boxed )
@@ -569,7 +569,7 @@ na_boxed_copy( const NABoxed *boxed )
  *
  * Dumps the @boxed box.
  *
- * Since: 3.1.0
+ * Since: 3.1
  */
 void
 na_boxed_dump( const NABoxed *boxed )
@@ -603,7 +603,7 @@ na_boxed_dump( const NABoxed *boxed )
  * by the caller, or %NULL if the type is unknowned, or does not provide
  * the 'from_string' function.
  *
- * Since: 3.1.0
+ * Since: 3.1
  */
 NABoxed *
 na_boxed_new_from_string( guint type, const gchar *string )
@@ -630,7 +630,7 @@ na_boxed_new_from_string( guint type, const gchar *string )
  * Returns: the boolean value if @boxed is of %NA_DATA_TYPE_BOOLEAN type,
  * %FALSE else.
  *
- * Since: 3.1.0
+ * Since: 3.1
  */
 gboolean
 na_boxed_get_boolean( const NABoxed *boxed )
@@ -655,7 +655,7 @@ na_boxed_get_boolean( const NABoxed *boxed )
  * Returns: a const pointer to the data if @boxed is of %NA_DATA_TYPE_POINTER
  * type, %NULL else.
  *
- * Since: 3.1.0
+ * Since: 3.1
  */
 gconstpointer
 na_boxed_get_pointer( const NABoxed *boxed )
@@ -679,7 +679,7 @@ na_boxed_get_pointer( const NABoxed *boxed )
  * Returns: a newly allocated string if @boxed is of %NA_DATA_TYPE_STRING
  * type, which should be g_free() by the caller, %NULL else.
  *
- * Since: 3.1.0
+ * Since: 3.1
  */
 gchar *
 na_boxed_get_string( const NABoxed *boxed )
@@ -703,7 +703,7 @@ na_boxed_get_string( const NABoxed *boxed )
  * Returns: a newly allocated string list if @boxed is of %NA_DATA_TYPE_STRING_LIST
  * type, which should be na_core_utils_slist_free() by the caller, %NULL else.
  *
- * Since: 3.1.0
+ * Since: 3.1
  */
 GSList *
 na_boxed_get_string_list( const NABoxed *boxed )
@@ -728,7 +728,7 @@ na_boxed_get_string_list( const NABoxed *boxed )
  * Returns: an unsigned integer if @boxed is of %NA_DATA_TYPE_UINT type,
  * zero else.
  *
- * Since: 3.1.0
+ * Since: 3.1
  */
 guint
 na_boxed_get_uint( const NABoxed *boxed )
@@ -753,7 +753,7 @@ na_boxed_get_uint( const NABoxed *boxed )
  * Returns: a newly allocated list if @boxed is of %NA_DATA_TYPE_UINT_LIST
  * type, which should be g_list_free() by the caller, %FALSE else.
  *
- * Since: 3.1.0
+ * Since: 3.1
  */
 GList *
 na_boxed_get_uint_list( const NABoxed *boxed )
@@ -778,7 +778,7 @@ na_boxed_get_uint_list( const NABoxed *boxed )
  *
  * Setup @value with the content of the @boxed.
  *
- * Since: 3.1.0
+ * Since: 3.1
  */
 void
 na_boxed_get_as_value( const NABoxed *boxed, GValue *value )
@@ -802,7 +802,7 @@ na_boxed_get_as_value( const NABoxed *boxed, GValue *value )
  * is returned in a newly allocated value, which should be g_free() (resp.
  * g_free(), na_core_utils_slist_free(), g_list_free()) by the caller.
  *
- * Since: 3.1.0
+ * Since: 3.1
  */
 void *
 na_boxed_get_as_void( const NABoxed *boxed )
@@ -822,7 +822,7 @@ na_boxed_get_as_void( const NABoxed *boxed )
  *
  * Copy value from @value to @boxed.
  *
- * Since: 3.1.0
+ * Since: 3.1
  */
 void
 na_boxed_set_from_boxed( NABoxed *boxed, const NABoxed *value )
@@ -848,7 +848,7 @@ na_boxed_set_from_boxed( NABoxed *boxed, const NABoxed *value )
  *
  * Evaluates the @value and set it to the @boxed.
  *
- * Since: 3.1.0
+ * Since: 3.1
  */
 void
 na_boxed_set_from_string( NABoxed *boxed, const gchar *value )
@@ -871,7 +871,7 @@ na_boxed_set_from_string( NABoxed *boxed, const gchar *value )
  *
  * Evaluates the @value and set it to the @boxed.
  *
- * Since: 3.1.0
+ * Since: 3.1
  */
 void
 na_boxed_set_from_value( NABoxed *boxed, const GValue *value )
@@ -894,7 +894,7 @@ na_boxed_set_from_value( NABoxed *boxed, const GValue *value )
  *
  * Evaluates the @value and set it to the @boxed.
  *
- * Since: 3.1.0
+ * Since: 3.1
  */
 void
 na_boxed_set_from_void( NABoxed *boxed, const void *value )
diff --git a/src/core/na-data-boxed.c b/src/core/na-data-boxed.c
index 2b875bf..14a8c24 100644
--- a/src/core/na-data-boxed.c
+++ b/src/core/na-data-boxed.c
@@ -387,7 +387,7 @@ na_data_boxed_get_param_spec( const NADataDef *def )
  * Returns: %TRUE if the two boxeds are equal, %FALSE else.
  *
  * Since: 2.30
- * Deprecated: 3.1.0: Use na_boxed_are_equal() instead.
+ * Deprecated: 3.1: Use na_boxed_are_equal() instead.
  */
 gboolean
 na_data_boxed_are_equal( const NADataBoxed *a, const NADataBoxed *b )
@@ -462,7 +462,7 @@ na_data_boxed_is_valid( const NADataBoxed *boxed )
  * Dump the content of @boxed.
  *
  * Since: 2.30
- * Deprecated: 3.1.0: Use na_boxed_dump() instead.
+ * Deprecated: 3.1: Use na_boxed_dump() instead.
  */
 void
 na_data_boxed_dump( const NADataBoxed *boxed )
@@ -478,7 +478,7 @@ na_data_boxed_dump( const NADataBoxed *boxed )
  * should be g_free() by the caller.
  *
  * Since: 2.30
- * Deprecated: 3.1.0: Use na_boxed_get_string() instead.
+ * Deprecated: 3.1: Use na_boxed_get_string() instead.
  */
 gchar *
 na_data_boxed_get_as_string( const NADataBoxed *boxed )
@@ -494,7 +494,7 @@ na_data_boxed_get_as_string( const NADataBoxed *boxed )
  * Setup @value with the content of the @boxed.
  *
  * Since: 2.30
- * Deprecated: 3.1.0: Use na_boxed_get_as_value() instead.
+ * Deprecated: 3.1: Use na_boxed_get_as_value() instead.
  */
 void
 na_data_boxed_get_as_value( const NADataBoxed *boxed, GValue *value )
@@ -513,7 +513,7 @@ na_data_boxed_get_as_value( const NADataBoxed *boxed, GValue *value )
  * allocated value, which should be released by the caller.
  *
  * Since: 2.30
- * Deprecated: 3.1.0: Use na_boxed_get_as_void() instead.
+ * Deprecated: 3.1: Use na_boxed_get_as_void() instead.
  */
 void *
 na_data_boxed_get_as_void( const NADataBoxed *boxed )
@@ -529,7 +529,7 @@ na_data_boxed_get_as_void( const NADataBoxed *boxed )
  * Copy value from @value to @boxed.
  *
  * Since: 2.30
- * Deprecated: 3.1.0: Use na_boxed_set_from_boxed() instead.
+ * Deprecated: 3.1: Use na_boxed_set_from_boxed() instead.
  */
 void
 na_data_boxed_set_from_boxed( NADataBoxed *boxed, const NADataBoxed *value )
@@ -545,7 +545,7 @@ na_data_boxed_set_from_boxed( NADataBoxed *boxed, const NADataBoxed *value )
  * Evaluates the @value and set it to the @boxed.
  *
  * Since: 2.30
- * Deprecated: 3.1.0: Use na_boxed_set_from_string() instead.
+ * Deprecated: 3.1: Use na_boxed_set_from_string() instead.
  */
 void
 na_data_boxed_set_from_string( NADataBoxed *boxed, const gchar *value )
@@ -561,7 +561,7 @@ na_data_boxed_set_from_string( NADataBoxed *boxed, const gchar *value )
  * Evaluates the @value and set it to the @boxed.
  *
  * Since: 2.30
- * Deprecated: 3.1.0: Use na_boxed_set_from_value() instead.
+ * Deprecated: 3.1: Use na_boxed_set_from_value() instead.
  */
 void
 na_data_boxed_set_from_value( NADataBoxed *boxed, const GValue *value )
@@ -577,7 +577,7 @@ na_data_boxed_set_from_value( NADataBoxed *boxed, const GValue *value )
  * Evaluates the @value and set it to the @boxed.
  *
  * Since: 2.30
- * Deprecated: 3.1.0: Use na_boxed_set_from_void() instead.
+ * Deprecated: 3.1: Use na_boxed_set_from_void() instead.
  */
 void
 na_data_boxed_set_from_void( NADataBoxed *boxed, const void *value )
diff --git a/src/core/na-gconf-migration.c b/src/core/na-gconf-migration.c
index 33e0bd4..9b55e7e 100644
--- a/src/core/na-gconf-migration.c
+++ b/src/core/na-gconf-migration.c
@@ -43,7 +43,7 @@
  * Disable GConf I/O provider both for reading and writing.
  * Migrate users preferences to NASettings.
  *
- * Since: 3.1.0
+ * Since: 3.1
  */
 void
 na_gconf_migration_run( void )
diff --git a/src/core/na-gconf-monitor.c b/src/core/na-gconf-monitor.c
index b389dff..03aa122 100644
--- a/src/core/na-gconf-monitor.c
+++ b/src/core/na-gconf-monitor.c
@@ -203,7 +203,7 @@ instance_finalize( GObject *object )
  * triggeering the @handler in case of modifications.
  *
  * Since: 2.30
- * Deprecated: 3.1.0
+ * Deprecated: 3.1
  */
 NAGConfMonitor *
 na_gconf_monitor_new( const gchar *path, GConfClientNotifyFunc handler, gpointer user_data )
@@ -271,7 +271,7 @@ install_monitor( NAGConfMonitor *monitor )
  * Release allocated monitors.
  *
  * Since: 2.30
- * Deprecated: 3.1.0
+ * Deprecated: 3.1
  */
 void
 na_gconf_monitor_release_monitors( GList *monitors )
diff --git a/src/core/na-gconf-utils.c b/src/core/na-gconf-utils.c
index 8c500bb..908d385 100644
--- a/src/core/na-gconf-utils.c
+++ b/src/core/na-gconf-utils.c
@@ -543,7 +543,7 @@ na_gconf_utils_read_string_list( GConfClient *gconf, const gchar *path )
  * It should be g_free() by the caller.
  *
  * Since: 2.30
- * Deprecated: 3.1.0
+ * Deprecated: 3.1
  */
 gboolean
 na_gconf_utils_write_bool( GConfClient *gconf, const gchar *path, gboolean value, gchar **message )
@@ -581,7 +581,7 @@ na_gconf_utils_write_bool( GConfClient *gconf, const gchar *path, gboolean value
  * It should be g_free() by the caller.
  *
  * Since: 2.30
- * Deprecated: 3.1.0
+ * Deprecated: 3.1
  */
 gboolean
 na_gconf_utils_write_int( GConfClient *gconf, const gchar *path, gint value, gchar **message )
@@ -619,7 +619,7 @@ na_gconf_utils_write_int( GConfClient *gconf, const gchar *path, gint value, gch
  * It should be g_free() by the caller.
  *
  * Since: 2.30
- * Deprecated: 3.1.0
+ * Deprecated: 3.1
  */
 gboolean
 na_gconf_utils_write_string( GConfClient *gconf, const gchar *path, const gchar *value, gchar **message )
@@ -657,7 +657,7 @@ na_gconf_utils_write_string( GConfClient *gconf, const gchar *path, const gchar
  * It should be g_free() by the caller.
  *
  * Since: 2.30
- * Deprecated: 3.1.0
+ * Deprecated: 3.1
  */
 gboolean
 na_gconf_utils_write_string_list( GConfClient *gconf, const gchar *path, GSList *value, gchar **message )
@@ -696,7 +696,7 @@ na_gconf_utils_write_string_list( GConfClient *gconf, const gchar *path, GSList
  * Returns: %TRUE if the operation was successful, %FALSE else.
  *
  * Since: 2.30
- * Deprecated: 3.1.0
+ * Deprecated: 3.1
  */
 gboolean
 na_gconf_utils_remove_entry( GConfClient *gconf, const gchar *path, gchar **message )
@@ -735,7 +735,7 @@ na_gconf_utils_remove_entry( GConfClient *gconf, const gchar *path, gchar **mess
  * string was not of the GConf form.
  *
  * Since: 2.30
- * Deprecated: 3.1.0
+ * Deprecated: 3.1
  */
 GSList *
 na_gconf_utils_slist_from_string( const gchar *value )
@@ -771,7 +771,7 @@ na_gconf_utils_slist_from_string( const gchar *value )
  * allocated string which should be g_free() by the caller.
  *
  * Since: 2.30
- * Deprecated: 3.1.0
+ * Deprecated: 3.1
  */
 gchar *
 na_gconf_utils_slist_to_string( GSList *slist )
diff --git a/src/core/na-icontext.c b/src/core/na-icontext.c
index d2df035..25b126a 100644
--- a/src/core/na-icontext.c
+++ b/src/core/na-icontext.c
@@ -175,7 +175,7 @@ interface_base_finalize( NAIContextInterface *klass )
  *
  * Returns: %TRUE if this @a and @b are equal, %FALSE else.
  *
- * Since: 3.1.0
+ * Since: 3.1
  */
 gboolean
 na_icontext_are_equal( const NAIContext *a, const NAIContext *b )
@@ -324,7 +324,7 @@ na_icontext_check_mimetypes( const NAIContext *context )
  *
  * Copy specific data from @source to @context.
  *
- * Since: 3.1.0
+ * Since: 3.1
  */
 void
 na_icontext_copy( NAIContext *context, const NAIContext *source )
diff --git a/src/core/na-iduplicable.c b/src/core/na-iduplicable.c
index 954bc45..94e1f29 100644
--- a/src/core/na-iduplicable.c
+++ b/src/core/na-iduplicable.c
@@ -520,7 +520,7 @@ na_iduplicable_set_origin( NAIDuplicable *object, const NAIDuplicable *origin )
  * Sets the new modified of a duplicated #NAIDuplicable.
  *
  * Since: 2.30
- * Deprecated: 3.1.0
+ * Deprecated: 3.1
  */
 void
 na_iduplicable_set_modified( NAIDuplicable *object, gboolean modified )
diff --git a/src/core/na-iprefs.c b/src/core/na-iprefs.c
index 97c0614..4fe6a08 100644
--- a/src/core/na-iprefs.c
+++ b/src/core/na-iprefs.c
@@ -231,7 +231,7 @@ na_iprefs_set_export_format( const gchar *name, GQuark format )
  * Returns: a list of i/o provider identifiers found in preferences
  * system; this list should be na_core_utils_slist_free() by the caller.
  *
- * since: 3.1.0
+ * Since: 3.1
  */
 GSList *
 na_iprefs_get_io_providers( void )
diff --git a/src/core/na-object-item.c b/src/core/na-object-item.c
index b36bfbe..8495824 100644
--- a/src/core/na-object-item.c
+++ b/src/core/na-object-item.c
@@ -712,7 +712,7 @@ count_items_rec( GList *items, gint *menus, gint *actions, gint *profiles, gbool
  * Returns: the new list, which should be na_object_free_items() by the
  * caller.
  *
- * Since: 3.1.0
+ * Since: 3.1
  */
 GList *
 na_object_item_copyref_items( GList *items )
@@ -730,7 +730,7 @@ na_object_item_copyref_items( GList *items )
  *
  * Returns: a %NULL pointer.
  *
- * Since: 3.1.0
+ * Since: 3.1
  */
 GList *
 na_object_item_free_items( GList *items )
@@ -858,7 +858,7 @@ copy_children( NAObjectItem *target, const NAObjectItem *source )
  *
  * Returns: the writability status of the @item.
  *
- * Since: 3.1.0
+ * Since: 3.1
  */
 gboolean
 na_object_item_is_finally_writable( const NAObjectItem *item, guint *reason )
@@ -891,7 +891,7 @@ na_object_item_is_finally_writable( const NAObjectItem *item, guint *reason )
  *
  * Set the writability status of the @item.
  *
- * Since: 3.1.0
+ * Since: 3.1
  */
 void
 na_object_item_set_writability_status( NAObjectItem *item, gboolean writable, guint reason )
diff --git a/src/core/na-object.c b/src/core/na-object.c
index e9ce5af..7bb9a17 100644
--- a/src/core/na-object.c
+++ b/src/core/na-object.c
@@ -698,7 +698,7 @@ build_class_hierarchy( const NAObject *object )
  * from the topmost base class, to the most-derived one.
  *
  * Since: 2.30
- * Deprecated: 3.1.0
+ * Deprecated: 3.1
  */
 GList *
 na_object_get_hierarchy( const NAObject *object )
@@ -725,7 +725,7 @@ na_object_get_hierarchy( const NAObject *object )
  * Releases the #NAObject hierarchy.
  *
  * Since: 2.30
- * Deprecated: 3.1.0
+ * Deprecated: 3.1
  */
 void
 na_object_free_hierarchy( GList *hierarchy )
diff --git a/src/core/na-settings.c b/src/core/na-settings.c
index cee42f5..c777f82 100644
--- a/src/core/na-settings.c
+++ b/src/core/na-settings.c
@@ -451,7 +451,7 @@ na_settings_free( void )
  *
  * Registers a new consumer of the monitoring of the @key.
  *
- * Since: 3.1.0
+ * Since: 3.1
  */
 void
 na_settings_register_key_callback( const gchar *key, GCallback callback, gpointer user_data )
@@ -486,7 +486,7 @@ na_settings_register_key_callback( const gchar *key, GCallback callback, gpointe
  *
  * Returns: the value of the key, of its default value if not found.
  *
- * Since: 3.1.0
+ * Since: 3.1
  */
 gboolean
 na_settings_get_boolean( const gchar *key, gboolean *found, gboolean *mandatory )
@@ -508,7 +508,7 @@ na_settings_get_boolean( const gchar *key, gboolean *found, gboolean *mandatory
  *
  * Returns: the value of the key, of its default value if not found.
  *
- * Since: 3.1.0
+ * Since: 3.1
  */
 gboolean
 na_settings_get_boolean_ex( const gchar *group, const gchar *key, gboolean *found, gboolean *mandatory )
@@ -551,7 +551,7 @@ na_settings_get_boolean_ex( const gchar *group, const gchar *key, gboolean *foun
  * Returns: the value of the key as a newly allocated string, which should
  * be g_free() by the caller.
  *
- * Since: 3.1.0
+ * Since: 3.1
  */
 gchar *
 na_settings_get_string( const gchar *key, gboolean *found, gboolean *mandatory )
@@ -594,7 +594,7 @@ na_settings_get_string( const gchar *key, gboolean *found, gboolean *mandatory )
  * Returns: the value of the key as a newly allocated list of strings.
  * The returned list should be na_core_utils_slist_free() by the caller.
  *
- * Since: 3.1.0
+ * Since: 3.1
  */
 GSList *
 na_settings_get_string_list( const gchar *key, gboolean *found, gboolean *mandatory )
@@ -636,7 +636,7 @@ na_settings_get_string_list( const gchar *key, gboolean *found, gboolean *mandat
  *
  * Returns: the value of the key.
  *
- * Since: 3.1.0
+ * Since: 3.1
  */
 guint
 na_settings_get_uint( const gchar *key, gboolean *found, gboolean *mandatory )
@@ -679,7 +679,7 @@ na_settings_get_uint( const gchar *key, gboolean *found, gboolean *mandatory )
  * Returns: the value of the key as a newly allocated list of uints.
  * The returned list should be g_list_free() by the caller.
  *
- * Since: 3.1.0
+ * Since: 3.1
  */
 GList *
 na_settings_get_uint_list( const gchar *key, gboolean *found, gboolean *mandatory )
@@ -717,7 +717,7 @@ na_settings_get_uint_list( const gchar *key, gboolean *found, gboolean *mandator
  *
  * Returns: %TRUE is the writing has been successful, %FALSE else.
  *
- * Since: 3.1.0
+ * Since: 3.1
  */
 gboolean
 na_settings_set_boolean( const gchar *key, gboolean value )
@@ -742,7 +742,7 @@ na_settings_set_boolean( const gchar *key, gboolean value )
  *
  * Returns: %TRUE is the writing has been successful, %FALSE else.
  *
- * Since: 3.1.0
+ * Since: 3.1
  */
 gboolean
 na_settings_set_boolean_ex( const gchar *group, const gchar *key, gboolean value )
@@ -769,7 +769,7 @@ na_settings_set_boolean_ex( const gchar *group, const gchar *key, gboolean value
  *
  * Returns: %TRUE is the writing has been successful, %FALSE else.
  *
- * Since: 3.1.0
+ * Since: 3.1
  */
 gboolean
 na_settings_set_string( const gchar *key, const gchar *value )
@@ -789,7 +789,7 @@ na_settings_set_string( const gchar *key, const gchar *value )
  *
  * Returns: %TRUE is the writing has been successful, %FALSE else.
  *
- * Since: 3.1.0
+ * Since: 3.1
  */
 gboolean
 na_settings_set_string_list( const gchar *key, const GSList *value )
@@ -820,7 +820,7 @@ na_settings_set_string_list( const gchar *key, const GSList *value )
  *
  * Returns: %TRUE is the writing has been successful, %FALSE else.
  *
- * Since: 3.1.0
+ * Since: 3.1
  */
 gboolean
 na_settings_set_uint( const gchar *key, guint value )
@@ -847,7 +847,7 @@ na_settings_set_uint( const gchar *key, guint value )
  *
  * Returns: %TRUE is the writing has been successful, %FALSE else.
  *
- * Since: 3.1.0
+ * Since: 3.1
  */
 gboolean
 na_settings_set_uint_list( const gchar *key, const GList *value )
@@ -876,7 +876,7 @@ na_settings_set_uint_list( const gchar *key, const GList *value )
  * known i/o providers from preferences. We do not care of returning unique
  * or sorted group names.
  *
- * Since: 3.1.0
+ * Since: 3.1
  */
 GSList *
 na_settings_get_groups( void )
diff --git a/src/core/na-updater.c b/src/core/na-updater.c
index 26f92ab..15eee05 100644
--- a/src/core/na-updater.c
+++ b/src/core/na-updater.c
@@ -500,7 +500,7 @@ na_updater_should_pasted_be_relabeled( const NAUpdater *updater, const NAObject
  *
  * Returns: a pointer (not a ref) on the loaded tree.
  *
- * Since: 3.1.0
+ * Since: 3.1
  */
 GList *
 na_updater_load_items( NAUpdater *updater )



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