diff options
author | monsta <[email protected]> | 2016-06-01 11:20:57 +0300 |
---|---|---|
committer | monsta <[email protected]> | 2016-06-01 11:27:13 +0300 |
commit | 415e00e359d2114a215289b4cf4c88368f232ba7 (patch) | |
tree | c07cfe65e6baff3a124b96a96641b483fde4e234 /backend/tiff | |
parent | edae80f9c5b8082b86e1cbd60cfee9c79d7e23ba (diff) | |
download | atril-415e00e359d2114a215289b4cf4c88368f232ba7.tar.bz2 atril-415e00e359d2114a215289b4cf4c88368f232ba7.tar.xz |
backend: drop some win32-specific stuff
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; |