[evince/gnome-2-28] [shell] Use g_uri_unescape_string() instead of our own implementation



commit ad34fdc26e124509cb7508fc6760e29dbdb26891
Author: Carlos Garcia Campos <carlosgc gnome org>
Date:   Wed Oct 7 18:19:04 2009 +0200

    [shell] Use g_uri_unescape_string() instead of our own implementation

 shell/ev-window-title.c |    2 +-
 shell/ev-window.c       |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/shell/ev-window-title.c b/shell/ev-window-title.c
index baafa74..fe93049 100644
--- a/shell/ev-window-title.c
+++ b/shell/ev-window-title.c
@@ -75,7 +75,7 @@ get_filename_from_uri (const char *uri)
 	char *filename;
 	char *basename;
 	
-	filename = escape_uri_for_display (uri);
+	filename = g_uri_unescape_string (uri, NULL);
 	basename = g_path_get_basename (filename);
 	g_free(filename);
 
diff --git a/shell/ev-window.c b/shell/ev-window.c
index cc1d183..1eb7d08 100644
--- a/shell/ev-window.c
+++ b/shell/ev-window.c
@@ -1614,7 +1614,7 @@ show_loading_progress (EvWindow *ev_window)
 	if (ev_window->priv->message_area)
 		return FALSE;
 
-	display_name = escape_uri_for_display (ev_window->priv->uri);
+	display_name = g_uri_unescape_string (ev_window->priv->uri, NULL);
 	text = g_strdup_printf (_("Loading document from â??%sâ??"),
 				display_name);
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]