summaryrefslogtreecommitdiff
path: root/filter/source/graphicfilter/ieps/ieps.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'filter/source/graphicfilter/ieps/ieps.cxx')
-rw-r--r--filter/source/graphicfilter/ieps/ieps.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/filter/source/graphicfilter/ieps/ieps.cxx b/filter/source/graphicfilter/ieps/ieps.cxx
index a6c764adaff2..c5ed1970865f 100644
--- a/filter/source/graphicfilter/ieps/ieps.cxx
+++ b/filter/source/graphicfilter/ieps/ieps.cxx
@@ -374,7 +374,7 @@ static bool RenderAsBMPThroughConvert(const sal_uInt8* pBuf, sal_uInt32 nBytesRe
arg1.pData, arg2.pData, arg3.pData, arg4.pData
};
return RenderAsBMPThroughHelper(pBuf, nBytesRead, rGraphic,
- { "convert" EXESUFFIX },
+ { u"convert" EXESUFFIX },
args,
SAL_N_ELEMENTS(args));
}
@@ -403,11 +403,11 @@ static bool RenderAsBMPThroughGS(const sal_uInt8* pBuf, sal_uInt32 nBytesRead,
#ifdef _WIN32
// Try both 32-bit and 64-bit ghostscript executable name
{
- "gswin32c" EXESUFFIX,
- "gswin64c" EXESUFFIX,
+ u"gswin32c" EXESUFFIX,
+ u"gswin64c" EXESUFFIX,
},
#else
- { "gs" EXESUFFIX },
+ { u"gs" EXESUFFIX },
#endif
args,
SAL_N_ELEMENTS(args));