]> www.fi.muni.cz Git - evince.git/commitdiff
Do not escape uri before calling gnome_vfs_url_show(). Fixes bug #378085.
authorCarlos Garcia Campos <carlosgc@gnome.org>
Sat, 23 Dec 2006 12:25:18 +0000 (12:25 +0000)
committerCarlos Garcia Campos <carlosgc@src.gnome.org>
Sat, 23 Dec 2006 12:25:18 +0000 (12:25 +0000)
2006-12-23  Carlos Garcia Campos  <carlosgc@gnome.org>
* shell/ev-window.c: (launch_external_uri):
Do not escape uri before calling gnome_vfs_url_show(). Fixes bug
#378085.

ChangeLog
shell/ev-window.c

index 9749cea4840c8b14a447a5c25730af83894f6113..f4f99533161d8826eab025b400946f7044dc4a3d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2006-12-23  Carlos Garcia Campos  <carlosgc@gnome.org>
+
+       * shell/ev-window.c: (launch_external_uri):
+
+       Do not escape uri before calling gnome_vfs_url_show(). Fixes bug
+       #378085.
+
 2006-12-22  Elijah Newren  <newren gmail com>
 
        * configure.ac: explicitly check for libxml2.  Fixes #388795
index 9eac43f9b0f7862260b8781a9a406cd408145d5e..ce956b97c5b5f650af08676ba7a3fc43e9712891 100644 (file)
@@ -4148,14 +4148,7 @@ launch_action (EvWindow *window, EvLinkAction *action)
 static void
 launch_external_uri (EvWindow *window, EvLinkAction *action)
 {
-       const char *uri;
-       char *escaped;
-
-       uri = ev_link_action_get_uri (action);
-       escaped = gnome_vfs_escape_host_and_path_string (uri);
-
-       gnome_vfs_url_show (escaped);
-       g_free (escaped);
+       gnome_vfs_url_show (ev_link_action_get_uri (action));
 }
 
 static void