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 /src | |
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.
Diffstat (limited to 'src')
-rw-r--r-- | src/window-commands.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |