diff options
author | Javier Jardón <jjardon@gnome.org> | 2011-06-09 17:21:03 +0100 |
---|---|---|
committer | Ryan Lortie <desrt@desrt.ca> | 2011-06-13 09:22:17 -0400 |
commit | 01c1c36070184d67f4e0b925acf82a0c0a509558 (patch) | |
tree | 918db0a97fa0a87fbce558ddf3e779713b1a76a9 /rsvg-base.c | |
parent | ab225933eb778751ed786bb82a1e8f2bdd89a187 (diff) | |
download | librsvg-01c1c36070184d67f4e0b925acf82a0c0a509558.tar.gz |
Use "const" instead G_CONST_RETURN
https://bugzilla.gnome.org/show_bug.cgi?id=652213
Diffstat (limited to 'rsvg-base.c')
-rw-r--r-- | rsvg-base.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/rsvg-base.c b/rsvg-base.c index 6d7a5c35..9fd065a0 100644 --- a/rsvg-base.c +++ b/rsvg-base.c @@ -1102,7 +1102,7 @@ rsvg_handle_set_base_gfile (RsvgHandle *handle, * Returns: the base uri, possibly null * Since: 2.8 */ -G_CONST_RETURN char * +const char * rsvg_handle_get_base_uri (RsvgHandle * handle) { g_return_val_if_fail (handle, NULL); @@ -1246,7 +1246,7 @@ rsvg_drawing_ctx_free (RsvgDrawingCtx * handle) * * Since: 2.9 */ -G_CONST_RETURN char * +const char * rsvg_handle_get_metadata (RsvgHandle * handle) { g_return_val_if_fail (handle, NULL); @@ -1268,7 +1268,7 @@ rsvg_handle_get_metadata (RsvgHandle * handle) * * Since: 2.4 */ -G_CONST_RETURN char * +const char * rsvg_handle_get_title (RsvgHandle * handle) { g_return_val_if_fail (handle, NULL); @@ -1290,7 +1290,7 @@ rsvg_handle_get_title (RsvgHandle * handle) * * Since: 2.4 */ -G_CONST_RETURN char * +const char * rsvg_handle_get_desc (RsvgHandle * handle) { g_return_val_if_fail (handle, NULL); |