diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-12-19 08:15:56 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-12-19 08:20:02 +0100 |
commit | bd9d2c3205af57dc6ae9821a3bc9c098bf97dba1 (patch) | |
tree | 74b3c48e188d6a159c65c040437e3cba0c4fc7f7 /desktop/source/deployment/dp_persmap.cxx | |
parent | a56955a4b323dd3e78ea49f2b3f3eebca5d5586c (diff) |
sal_Char->char in desktop..dtrans
Change-Id: I6ad7d6acf081c16f904eb1b2506b545a88046c48
Reviewed-on: https://gerrit.libreoffice.org/85470
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'desktop/source/deployment/dp_persmap.cxx')
-rw-r--r-- | desktop/source/deployment/dp_persmap.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/desktop/source/deployment/dp_persmap.cxx b/desktop/source/deployment/dp_persmap.cxx index 63d02f51d41a..14e1f2076e47 100644 --- a/desktop/source/deployment/dp_persmap.cxx +++ b/desktop/source/deployment/dp_persmap.cxx @@ -66,7 +66,7 @@ PersistentMap::~PersistentMap() // replace "%" with "%%" static OString encodeString( const OString& rStr) { - const sal_Char* pChar = rStr.getStr(); + const char* pChar = rStr.getStr(); const sal_Int32 nLen = rStr.getLength(); sal_Int32 i = nLen; // short circuit for the simple non-encoded case @@ -101,7 +101,7 @@ static OString encodeString( const OString& rStr) // replace "%0".."%F" with 0x00..0x0F // replace "%%" with "%" -static OString decodeString( const sal_Char* pEncChars, int nLen) +static OString decodeString( const char* pEncChars, int nLen) { const char* pChar = pEncChars; sal_Int32 i = nLen; @@ -117,7 +117,7 @@ static OString decodeString( const sal_Char* pEncChars, int nLen) pChar = pEncChars; for( i = nLen; --i >= 0;) { - sal_Char c = *(pChar++); + char c = *(pChar++); // handle escaped character if( c == '%') { |