diff options
author | Xan Lopez <xan@src.gnome.org> | 2007-10-26 04:00:20 +0800 |
---|---|---|
committer | Xan Lopez <xan@src.gnome.org> | 2007-10-26 04:00:20 +0800 |
commit | 51a7dc7dd4e0871d0da50228a163a1b124aeda1c (patch) | |
tree | fa8d40b6c4fae38fb657b2ef6147579d786d5aec /src/ephy-location-action.c | |
parent | f083f631bc0c22a990c87215583b3237fa886426 (diff) | |
download | gsoc2013-epiphany-51a7dc7dd4e0871d0da50228a163a1b124aeda1c.tar.gz gsoc2013-epiphany-51a7dc7dd4e0871d0da50228a163a1b124aeda1c.tar.zst gsoc2013-epiphany-51a7dc7dd4e0871d0da50228a163a1b124aeda1c.zip |
Change ephy_embed_get_title to return const char*.
Also replace all ephy_tab_get_title by ephy_embed_get_title.
svn path=/trunk/; revision=7559
Diffstat (limited to 'src/ephy-location-action.c')
-rw-r--r-- | src/ephy-location-action.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ephy-location-action.c b/src/ephy-location-action.c index 9c30f0dc6..9791f61a8 100644 --- a/src/ephy-location-action.c +++ b/src/ephy-location-action.c @@ -299,7 +299,7 @@ get_title_cb (EphyLocationEntry *entry, tab = ephy_window_get_active_tab (action->priv->window); - return g_strdup (ephy_tab_get_title (tab)); + return g_strdup (ephy_embed_get_title (ephy_tab_get_embed (tab))); } static void |