diff options
author | Xan Lopez <xan@src.gnome.org> | 2007-12-18 06:58:59 +0800 |
---|---|---|
committer | Xan Lopez <xan@src.gnome.org> | 2007-12-18 06:58:59 +0800 |
commit | 9b1d0da2bce4dbf9996f82c6647d079e9b4c15a0 (patch) | |
tree | 99a59823788ad5f19a43b4c5a1902755a6a192f2 | |
parent | 0d1b48d97783fd0b798b4ff4878d30eb1ad4524d (diff) | |
download | gsoc2013-epiphany-9b1d0da2bce4dbf9996f82c6647d079e9b4c15a0.tar.gz gsoc2013-epiphany-9b1d0da2bce4dbf9996f82c6647d079e9b4c15a0.tar.zst gsoc2013-epiphany-9b1d0da2bce4dbf9996f82c6647d079e9b4c15a0.zip |
Constify char* parameter for ephy_base_embed_location_changed.
svn path=/trunk/; revision=7781
-rw-r--r-- | embed/ephy-base-embed.c | 2 | ||||
-rw-r--r-- | embed/ephy-base-embed.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/embed/ephy-base-embed.c b/embed/ephy-base-embed.c index e8bad7c3e..4f611039a 100644 --- a/embed/ephy-base-embed.c +++ b/embed/ephy-base-embed.c @@ -1433,7 +1433,7 @@ ephy_base_embed_update_file_monitor (EphyBaseEmbed *embed, void ephy_base_embed_location_changed (EphyBaseEmbed *embed, - char *location) + const char *location) { GObject *object = G_OBJECT (embed); diff --git a/embed/ephy-base-embed.h b/embed/ephy-base-embed.h index 9120916dd..1f439afff 100644 --- a/embed/ephy-base-embed.h +++ b/embed/ephy-base-embed.h @@ -61,7 +61,7 @@ void ephy_base_embed_set_loading_title (EphyBaseEmbed *embed, void ephy_base_embed_set_address (EphyBaseEmbed *embed, const char *address); void ephy_base_embed_location_changed (EphyBaseEmbed *embed, - char *location); + const char *location); void ephy_base_embed_load_icon (EphyBaseEmbed *embed); void ephy_base_embed_set_icon_address (EphyBaseEmbed *embed, const char *address); |