summaryrefslogtreecommitdiff
path: root/svl/source/svdde/ddewrap.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svl/source/svdde/ddewrap.cxx')
-rw-r--r--svl/source/svdde/ddewrap.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/svl/source/svdde/ddewrap.cxx b/svl/source/svdde/ddewrap.cxx
index 8673dfbab4d1..f59897b15e7a 100644
--- a/svl/source/svdde/ddewrap.cxx
+++ b/svl/source/svdde/ddewrap.cxx
@@ -2,7 +2,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -44,9 +44,9 @@
HSZ WINAPI DdeCreateStringHandleW_9x( DWORD idInst, LPCWSTR pszString, int )
{
- HSZ hszResult;
- LPSTR pszANSIString;
- int nSize;
+ HSZ hszResult;
+ LPSTR pszANSIString;
+ int nSize;
nSize = pszString ? WideCharToMultiByte( CP_ACP, 0, pszString, -1, NULL, 0, NULL, NULL ) : 0;
pszANSIString = nSize ? (LPSTR)HeapAlloc( GetProcessHeap(), 0, nSize * sizeof(CHAR) ) : NULL;
@@ -66,8 +66,8 @@ HSZ WINAPI DdeCreateStringHandleW_9x( DWORD idInst, LPCWSTR pszString, int )
DWORD WINAPI DdeQueryStringW_9x( DWORD idInst, HSZ hsz, LPWSTR pszString, DWORD cchMax, int )
{
- DWORD dwResult;
- LPSTR pszANSIString;
+ DWORD dwResult;
+ LPSTR pszANSIString;
pszANSIString = cchMax ? (LPSTR)HeapAlloc( GetProcessHeap(), 0, cchMax * sizeof(CHAR) ) : NULL;