From 415e00e359d2114a215289b4cf4c88368f232ba7 Mon Sep 17 00:00:00 2001 From: monsta Date: Wed, 1 Jun 2016 11:20:57 +0300 Subject: backend: drop some win32-specific stuff --- backend/tiff/tiff-document.c | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'backend/tiff') 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; -- cgit v1.2.1