diff options
author | raveit65 <[email protected]> | 2016-06-02 16:11:53 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2016-06-02 16:11:53 +0200 |
commit | 6bccceb6b8573f9967331dde0a70cabeaccb6f44 (patch) | |
tree | e6cb07dd3d4241482f9598bc9686541de05557a9 /backend/tiff | |
parent | 3551d1c5e7fff4665b12b607f87529995307338c (diff) | |
parent | 3a2ccdaa3d399971c8b67df271646860a4327f27 (diff) | |
download | atril-6bccceb6b8573f9967331dde0a70cabeaccb6f44.tar.bz2 atril-6bccceb6b8573f9967331dde0a70cabeaccb6f44.tar.xz |
Merge branch 'master' of github.com:mate-desktop/atril
Diffstat (limited to 'backend/tiff')
-rw-r--r-- | backend/tiff/tiff-document.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/backend/tiff/tiff-document.c b/backend/tiff/tiff-document.c index 1341900e..854051de 100644 --- a/backend/tiff/tiff-document.c +++ b/backend/tiff/tiff-document.c @@ -96,20 +96,7 @@ tiff_document_load (EvDocument *document, push_handlers (); -#ifdef G_OS_WIN32 -{ - wchar_t *wfilename = g_utf8_to_utf16 (filename, -1, NULL, NULL, error); - if (wfilename == NULL) { - return FALSE; - } - - tiff = TIFFOpenW (wfilename, "r"); - - g_free (wfilename); -} -#else tiff = TIFFOpen (filename, "r"); -#endif if (tiff) { guint32 w, h; |