diff options
author | Marco Pesenti Gritti <marco@gnome.org> | 2004-01-20 04:20:33 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <marco@src.gnome.org> | 2004-01-20 04:20:33 +0800 |
commit | 67d23452025c9cb74756a649e3fdba905f3ab892 (patch) | |
tree | 62d4f7f37aa380ddb2f2cc4d86ea3b44a8c410e1 /embed/mozilla/MozDownload.cpp | |
parent | 4ec8d9dbfb45562644cb7f1a193c403820259d29 (diff) | |
download | gsoc2013-epiphany-67d23452025c9cb74756a649e3fdba905f3ab892.tar gsoc2013-epiphany-67d23452025c9cb74756a649e3fdba905f3ab892.tar.gz gsoc2013-epiphany-67d23452025c9cb74756a649e3fdba905f3ab892.tar.bz2 gsoc2013-epiphany-67d23452025c9cb74756a649e3fdba905f3ab892.tar.lz gsoc2013-epiphany-67d23452025c9cb74756a649e3fdba905f3ab892.tar.xz gsoc2013-epiphany-67d23452025c9cb74756a649e3fdba905f3ab892.tar.zst gsoc2013-epiphany-67d23452025c9cb74756a649e3fdba905f3ab892.zip |
Make uri canonical before passing it as launch argument to make vfs happy.
2004-01-19 Marco Pesenti Gritti <marco@gnome.org>
* embed/mozilla/ContentHandler.cpp:
* embed/mozilla/MozDownload.cpp:
Make uri canonical before passing it as
launch argument to make vfs happy.
* lib/eel-gconf-extensions.c: (eel_gconf_set_path):
Do not mix utf8/locale. Thanks to chpe to notice it.
Diffstat (limited to 'embed/mozilla/MozDownload.cpp')
-rw-r--r-- | embed/mozilla/MozDownload.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/embed/mozilla/MozDownload.cpp b/embed/mozilla/MozDownload.cpp index 003573402..38b06d064 100644 --- a/embed/mozilla/MozDownload.cpp +++ b/embed/mozilla/MozDownload.cpp @@ -331,7 +331,7 @@ MozDownload::OnStateChange (nsIWebProgress *aWebProgress, nsIRequest *aRequest, mDestination->GetNativePath (aDest); - param = g_strdup (aDest.get ()); + param = gnome_vfs_make_uri_canonical (aDest.get ()); params = g_list_append (params, param); gnome_vfs_mime_application_launch (helperApp, params); g_free (param); |