diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-03-04 03:54:36 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-03-04 03:54:36 +0800 |
commit | a65777247b2c4a412ee1972cab884f462dc19276 (patch) | |
tree | b0dce97cad625aaf16e0da55459d178a579b64de /src/bookmarks/ephy-bookmark-properties.c | |
parent | ade55d6a9658567dcefb18fc0d536a7e3eed0c8c (diff) | |
download | gsoc2013-epiphany-a65777247b2c4a412ee1972cab884f462dc19276.tar gsoc2013-epiphany-a65777247b2c4a412ee1972cab884f462dc19276.tar.gz gsoc2013-epiphany-a65777247b2c4a412ee1972cab884f462dc19276.tar.bz2 gsoc2013-epiphany-a65777247b2c4a412ee1972cab884f462dc19276.tar.lz gsoc2013-epiphany-a65777247b2c4a412ee1972cab884f462dc19276.tar.xz gsoc2013-epiphany-a65777247b2c4a412ee1972cab884f462dc19276.tar.zst gsoc2013-epiphany-a65777247b2c4a412ee1972cab884f462dc19276.zip |
Copy and modify gnome_vfs_uri_list_parse() so that we get a list of string
2004-03-03 Christian Persch <chpe@cvs.gnome.org>
* lib/widgets/ephy-node-view.c: (uri_list_parse),
(drag_data_received_cb):
Copy and modify gnome_vfs_uri_list_parse() so that we get a list
of string uris instead of GnomeVFSURIs. Change signature of
::node-dropped accordingly. Fixes bug #120231.
* src/bookmarks/ephy-bookmarks-editor.c: (node_dropped_cb):
Adapt to the changed ::node-dropped signal signature.
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 |