diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2003-10-26 19:07:48 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2003-10-26 19:07:48 +0800 |
commit | d1329e92440850b0dcf781c1f8c9566d0fde3f74 (patch) | |
tree | c4b268cfef281fc7d2437170bc90209215eb897a | |
parent | 52d5569982192a6e9d7813a9674c4e5f0cc880f5 (diff) | |
download | gsoc2013-epiphany-d1329e92440850b0dcf781c1f8c9566d0fde3f74.tar gsoc2013-epiphany-d1329e92440850b0dcf781c1f8c9566d0fde3f74.tar.gz gsoc2013-epiphany-d1329e92440850b0dcf781c1f8c9566d0fde3f74.tar.bz2 gsoc2013-epiphany-d1329e92440850b0dcf781c1f8c9566d0fde3f74.tar.lz gsoc2013-epiphany-d1329e92440850b0dcf781c1f8c9566d0fde3f74.tar.xz gsoc2013-epiphany-d1329e92440850b0dcf781c1f8c9566d0fde3f74.tar.zst gsoc2013-epiphany-d1329e92440850b0dcf781c1f8c9566d0fde3f74.zip |
Really used the converted string [in UTF-8] instead of the directly using
2003-10-26 Christian Persch <chpe@cvs.gnome.org>
* src/window-commands.c: (open_response_cb):
Really used the converted string [in UTF-8] instead of
the directly using filename.
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | src/window-commands.c | 2 |
2 files changed, 8 insertions, 1 deletions
@@ -1,5 +1,12 @@ 2003-10-26 Christian Persch <chpe@cvs.gnome.org> + * src/window-commands.c: (open_response_cb): + + Really used the converted string [in UTF-8] instead of + the directly using filename. + +2003-10-26 Christian Persch <chpe@cvs.gnome.org> + * src/bookmarks/ephy-bookmarks-editor.c: (import_dialog_response_cb): diff --git a/src/window-commands.c b/src/window-commands.c index 364d326e6..5ae736448 100644 --- a/src/window-commands.c +++ b/src/window-commands.c @@ -334,7 +334,7 @@ open_response_cb (GtkDialog *dialog, gint response, EphyWindow *window) if (converted != NULL) { - ephy_window_load_url(window, uri); + ephy_window_load_url(window, converted); } g_free (converted); |