diff options
Diffstat (limited to 'src/bookmarks/ephy-bookmark-properties.c')
-rw-r--r-- | src/bookmarks/ephy-bookmark-properties.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/bookmarks/ephy-bookmark-properties.c b/src/bookmarks/ephy-bookmark-properties.c index 8201a94f8..f9fac1413 100644 --- a/src/bookmarks/ephy-bookmark-properties.c +++ b/src/bookmarks/ephy-bookmark-properties.c @@ -242,13 +242,9 @@ title_entry_changed_cb (GtkWidget *entry, EphyBookmarkProperties *props) static void location_entry_changed_cb (GtkWidget *entry, EphyBookmarkProperties *props) { - char *text; - - text = gtk_editable_get_chars (GTK_EDITABLE (entry), 0, -1); ephy_bookmarks_set_address (props->priv->bookmarks, props->priv->bookmark, - text); - g_free (text); + gtk_entry_get_text (GTK_ENTRY (entry))); } static void |