Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/ev-window.c
diff options
context:
space:
mode:
authorCarlos Garcia Campos <carlosgc@gnome.org>2009-10-07 16:19:04 (GMT)
committer Carlos Garcia Campos <carlosgc@gnome.org>2009-10-07 16:39:31 (GMT)
commit2e7269db15755aad71ea5df8abb82c778dca6500 (patch)
treedd2b7a745bac6ae36b7265aab987d61816a3c6b2 /shell/ev-window.c
parent7e1276794f51b4eaa89392fb81d372a4329f54cb (diff)
[shell] Use g_uri_unescape_string() instead of our own implementation
Diffstat (limited to 'shell/ev-window.c')
-rw-r--r--shell/ev-window.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ev-window.c b/shell/ev-window.c
index 610a18e..f76d5af 100644
--- a/shell/ev-window.c
+++ b/shell/ev-window.c
@@ -1560,7 +1560,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);