From 48db718042d32bffe95ec058d636ed935d98ec4d Mon Sep 17 00:00:00 2001 From: Mike Kaganski Date: Tue, 26 Sep 2017 22:05:15 +0300 Subject: SAL: use more Unicode on Windows Change-Id: I9f54c8e8c4e617cc1ed6b436ca8c162d381ecab3 Reviewed-on: https://gerrit.libreoffice.org/42828 Tested-by: Jenkins Reviewed-by: Mike Kaganski --- sal/osl/w32/pipe.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sal/osl/w32/pipe.cxx') diff --git a/sal/osl/w32/pipe.cxx b/sal/osl/w32/pipe.cxx index 0bb884785a00..2240ade36b6f 100644 --- a/sal/osl/w32/pipe.cxx +++ b/sal/osl/w32/pipe.cxx @@ -70,9 +70,9 @@ oslPipe osl_createPipeImpl(void) pPipe->m_File = INVALID_HANDLE_VALUE; pPipe->m_NamedObject = nullptr; - pPipe->m_ReadEvent = CreateEvent(nullptr, TRUE, FALSE, nullptr); - pPipe->m_WriteEvent = CreateEvent(nullptr, TRUE, FALSE, nullptr); - pPipe->m_AcceptEvent = CreateEvent(nullptr, TRUE, FALSE, nullptr); + pPipe->m_ReadEvent = CreateEventW(nullptr, TRUE, FALSE, nullptr); + pPipe->m_WriteEvent = CreateEventW(nullptr, TRUE, FALSE, nullptr); + pPipe->m_AcceptEvent = CreateEventW(nullptr, TRUE, FALSE, nullptr); return pPipe; } -- cgit