diff options
author | Diego Escalante Urrelo <diegoe@src.gnome.org> | 2007-12-24 13:36:13 +0800 |
---|---|---|
committer | Diego Escalante Urrelo <diegoe@src.gnome.org> | 2007-12-24 13:36:13 +0800 |
commit | 6d9288b9d23c5b056425785bd85dde153f082ccf (patch) | |
tree | 92c470ff2c318be2303d21231959dfa69d496ecc | |
parent | bc9eb44bd3de68c4c624527e7629ec538d1fa3b1 (diff) | |
download | gsoc2013-epiphany-6d9288b9d23c5b056425785bd85dde153f082ccf.tar gsoc2013-epiphany-6d9288b9d23c5b056425785bd85dde153f082ccf.tar.gz gsoc2013-epiphany-6d9288b9d23c5b056425785bd85dde153f082ccf.tar.bz2 gsoc2013-epiphany-6d9288b9d23c5b056425785bd85dde153f082ccf.tar.lz gsoc2013-epiphany-6d9288b9d23c5b056425785bd85dde153f082ccf.tar.xz gsoc2013-epiphany-6d9288b9d23c5b056425785bd85dde153f082ccf.tar.zst gsoc2013-epiphany-6d9288b9d23c5b056425785bd85dde153f082ccf.zip |
Quick fix for a warning produced by my previous update to epiphany.defs,
ephy_embed_get_loading_title is actually const-char* not char*.
svn path=/trunk/; revision=7814
-rw-r--r-- | src/epiphany.defs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/epiphany.defs b/src/epiphany.defs index 80058e5a2..0317bf28b 100644 --- a/src/epiphany.defs +++ b/src/epiphany.defs @@ -1150,7 +1150,7 @@ (define-method get_loading_title (of-object "EphyEmbed") (c-name "ephy_embed_get_loading_title") - (return-type "char*") + (return-type "const-char*") ) (define-method get_encoding |