diff options
author | Mike Kaganski <mike.kaganski@collabora.com> | 2017-09-26 22:05:15 +0300 |
---|---|---|
committer | Mike Kaganski <mike.kaganski@collabora.com> | 2017-09-27 06:27:59 +0200 |
commit | 48db718042d32bffe95ec058d636ed935d98ec4d (patch) | |
tree | d7d8ca38723fbdf1f20992ea25dc229fb3e785b2 /sal/osl/w32/pipe.cxx | |
parent | d32506e9f4ea604532bf5f4ba8a302b652aeaaa1 (diff) |
SAL: use more Unicode on Windows
Change-Id: I9f54c8e8c4e617cc1ed6b436ca8c162d381ecab3
Reviewed-on: https://gerrit.libreoffice.org/42828
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Diffstat (limited to 'sal/osl/w32/pipe.cxx')
-rw-r--r-- | sal/osl/w32/pipe.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
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; } |