aboutsummaryrefslogtreecommitdiffstats
path: root/embed
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2004-07-07 21:24:09 +0800
committerChristian Persch <chpe@src.gnome.org>2004-07-07 21:24:09 +0800
commit075d8e0cc6baa1cb489fd8857dc1db05f3b1e95f (patch)
tree5402745b4bce55bbe4ffe8e4c19bd8955c5199db /embed
parent4beacf33a63ad8b8075b18d50c629317989083a8 (diff)
downloadgsoc2013-epiphany-075d8e0cc6baa1cb489fd8857dc1db05f3b1e95f.tar
gsoc2013-epiphany-075d8e0cc6baa1cb489fd8857dc1db05f3b1e95f.tar.gz
gsoc2013-epiphany-075d8e0cc6baa1cb489fd8857dc1db05f3b1e95f.tar.bz2
gsoc2013-epiphany-075d8e0cc6baa1cb489fd8857dc1db05f3b1e95f.tar.lz
gsoc2013-epiphany-075d8e0cc6baa1cb489fd8857dc1db05f3b1e95f.tar.xz
gsoc2013-epiphany-075d8e0cc6baa1cb489fd8857dc1db05f3b1e95f.tar.zst
gsoc2013-epiphany-075d8e0cc6baa1cb489fd8857dc1db05f3b1e95f.zip
Don't convert filename encoding here, since we use it as UTF-8 in
2004-07-07 Christian Persch <chpe@cvs.gnome.org> * embed/print-dialog.c: (ephy_print_get_print_info): Don't convert filename encoding here, since we use it as UTF-8 in MozillaPrivate.
Diffstat (limited to 'embed')
-rwxr-xr-xembed/print-dialog.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/embed/print-dialog.c b/embed/print-dialog.c
index 879cd21ee..c752a8ce0 100755
--- a/embed/print-dialog.c
+++ b/embed/print-dialog.c
@@ -168,11 +168,7 @@ ephy_print_get_print_info (void)
filename = eel_gconf_get_string (print_props[FILE_PROP].pref);
if (filename != NULL)
{
- char *expanded;
-
- expanded = gnome_vfs_expand_initial_tilde (filename);
- info->file = g_filename_to_utf8 (expanded, -1, NULL, NULL, NULL);
- g_free (expanded);
+ info->file = gnome_vfs_expand_initial_tilde (filename);
}
else
{