diff options
author | Xan Lopez <xan@src.gnome.org> | 2009-02-27 00:37:43 +0800 |
---|---|---|
committer | Xan Lopez <xan@src.gnome.org> | 2009-02-27 00:37:43 +0800 |
commit | 524007db88546cf76a6d0a0c1c512dd93058bc63 (patch) | |
tree | 1c9d1aadf4e2f3ee2c1d24c54e8b412ad0b144c1 /embed/ephy-embed.h | |
parent | 01b36dd4aeebac60076b1e8d28dd1181129939bd (diff) | |
download | gsoc2013-epiphany-524007db88546cf76a6d0a0c1c512dd93058bc63.tar.gz gsoc2013-epiphany-524007db88546cf76a6d0a0c1c512dd93058bc63.tar.zst gsoc2013-epiphany-524007db88546cf76a6d0a0c1c512dd93058bc63.zip |
Implement get/set encoding for the embed.
Bug #525265
svn path=/trunk/; revision=8815
Diffstat (limited to 'embed/ephy-embed.h')
-rw-r--r-- | embed/ephy-embed.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/embed/ephy-embed.h b/embed/ephy-embed.h index 36a705174..7855898b4 100644 --- a/embed/ephy-embed.h +++ b/embed/ephy-embed.h @@ -190,7 +190,7 @@ struct _EphyEmbedIface void (* scroll_pixels) (EphyEmbed *embed, int dx, int dy); - char * (* get_encoding) (EphyEmbed *embed); + const char * (* get_encoding) (EphyEmbed *embed); gboolean (* has_automatic_encoding) (EphyEmbed *embed); void (* set_encoding) (EphyEmbed *embed, const char *encoding); @@ -309,7 +309,7 @@ const char * ephy_embed_get_loading_title (EphyEmbed *embed); gboolean ephy_embed_get_visibility (EphyEmbed *embed); /* Encoding */ -char *ephy_embed_get_encoding (EphyEmbed *embed); +const char *ephy_embed_get_encoding (EphyEmbed *embed); gboolean ephy_embed_has_automatic_encoding (EphyEmbed *embed); |