diff options
author | David Tardon <dtardon@redhat.com> | 2012-03-07 12:41:14 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2012-03-07 14:01:28 +0100 |
commit | 2a58ae90ba4dd49bc539e1488a51c31f5563dc2a (patch) | |
tree | d6da0f8fce537c933c463e6a1ca133c4a91f06ff /sal | |
parent | b1f9d48ea75ff5a8a25eaeab625063663642904c (diff) |
WaE: deprecated conversion from string constant to 'LPWSTR'
Diffstat (limited to 'sal')
-rw-r--r-- | sal/osl/w32/procimpl.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sal/osl/w32/procimpl.cxx b/sal/osl/w32/procimpl.cxx index 2efb2b845ac2..ecf8eb310605 100644 --- a/sal/osl/w32/procimpl.cxx +++ b/sal/osl/w32/procimpl.cxx @@ -517,7 +517,7 @@ oslProcessError SAL_CALL osl_executeProcess_WithRedirectedIO( startup_info.cb = sizeof(STARTUPINFO); startup_info.dwFlags = STARTF_USESHOWWINDOW; - startup_info.lpDesktop = L""; + startup_info.lpDesktop = const_cast<LPWSTR>(L""); /* Create pipes for redirected IO */ HANDLE hInputRead = NULL; |