diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rwxr-xr-x | embed/print-dialog.c | 6 |
2 files changed, 8 insertions, 5 deletions
@@ -1,3 +1,10 @@ +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. + 2004-07-06 Christian Persch <chpe@cvs.gnome.org> * configure.in: 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 { |