diff options
author | Carlos Garcia Campos <cgarcia@igalia.com> | 2012-06-22 15:26:52 +0800 |
---|---|---|
committer | Carlos Garcia Campos <carlosgc@gnome.org> | 2012-06-25 18:33:32 +0800 |
commit | 74ab4a3a9802006edd99e21e85e688593bce93be (patch) | |
tree | 62f4595511e2af8b59079e5c5c9a84786b865af9 /embed/ephy-embed-utils.h | |
parent | 00ed0403c66295790677fa5a67af8d625da35ab2 (diff) | |
download | gsoc2013-epiphany-74ab4a3a9802006edd99e21e85e688593bce93be.tar.gz gsoc2013-epiphany-74ab4a3a9802006edd99e21e85e688593bce93be.tar.zst gsoc2013-epiphany-74ab4a3a9802006edd99e21e85e688593bce93be.zip |
ephy-web-view: status message should be const
In both ephy_web_view_set_link_message() and
ephy_embed_utils_link_message_parse().
Diffstat (limited to 'embed/ephy-embed-utils.h')
-rw-r--r-- | embed/ephy-embed-utils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/embed/ephy-embed-utils.h b/embed/ephy-embed-utils.h index 5f7cd95ce..bd82baa30 100644 --- a/embed/ephy-embed-utils.h +++ b/embed/ephy-embed-utils.h @@ -43,7 +43,7 @@ G_BEGIN_DECLS #define EPHY_WEBKIT_BACK_FORWARD_LIMIT 100 -char* ephy_embed_utils_link_message_parse (char *message); +char* ephy_embed_utils_link_message_parse (const char *message); gboolean ephy_embed_utils_address_has_web_scheme (const char *address); gboolean ephy_embed_utils_address_is_existing_absolute_filename (const char *address); char* ephy_embed_utils_normalize_address (const char *address); |