This takes a `const GValue *' argument.
authorMartin Baulig <baulig@suse.de>
Wed, 21 Mar 2001 11:16:38 +0000 (11:16 +0000)
committerMartin Baulig <martin@src.gnome.org>
Wed, 21 Mar 2001 11:16:38 +0000 (11:16 +0000)
2001-03-21  Martin Baulig  <baulig@suse.de>

* gboxed.[ch] (g_value_dup_boxed): This takes a `const GValue *'
argument.

gobject/ChangeLog
gobject/gboxed.c
gobject/gboxed.h

index 93f878a..37487b7 100644 (file)
@@ -1,3 +1,8 @@
+2001-03-21  Martin Baulig  <baulig@suse.de>
+
+       * gboxed.[ch] (g_value_dup_boxed): This takes a `const GValue *'
+       argument.
+
 2001-03-18  Tor Lillqvist  <tml@iki.fi>
 
        * gobject.def: Correct some renamed functions.
index 2924622..82fe36d 100644 (file)
@@ -437,7 +437,7 @@ g_value_get_boxed (const GValue *value)
 }
 
 gpointer
-g_value_dup_boxed (GValue *value)
+g_value_dup_boxed (const GValue *value)
 {
   g_return_val_if_fail (G_VALUE_HOLDS_BOXED (value), NULL);
   g_return_val_if_fail (G_TYPE_IS_VALUE (G_VALUE_TYPE (value)), NULL);
index e4e8f5e..742fd1d 100644 (file)
@@ -45,7 +45,7 @@ void          g_value_set_boxed               (GValue         *value,
 void           g_value_set_static_boxed        (GValue         *value,
                                                 gconstpointer   boxed);
 gpointer       g_value_get_boxed               (const GValue   *value);
-gpointer       g_value_dup_boxed               (GValue         *value);
+gpointer       g_value_dup_boxed               (const GValue   *value);
 
 
 /* --- convenience --- */