summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2014-08-12 14:58:33 +0200
committerThomas Arnhold <thomas@arnhold.org>2014-08-13 10:10:47 +0200
commitac2126879d3e348bca332ae8b2b0da6605c89082 (patch)
tree25201855459b623c19e58b15eb99ea9b1e69f896 /sw
parent28447075ea4b385ebf75f34d76226388c228b80e (diff)
warning C4245: '=' : conversion from 'char' to 'sal_Unicode'...
...signed/unsigned mismatch Change-Id: I788877bdd47847cdf23013ef3fd69699e886d468
Diffstat (limited to 'sw')
-rw-r--r--sw/source/filter/ww8/ww8par.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/filter/ww8/ww8par.cxx b/sw/source/filter/ww8/ww8par.cxx
index 447cf1dae39d..c4eb547e7219 100644
--- a/sw/source/filter/ww8/ww8par.cxx
+++ b/sw/source/filter/ww8/ww8par.cxx
@@ -3550,18 +3550,18 @@ bool SwWW8ImplReader::ReadChar(long nPosCp, long nCpOfs)
break;
case 0xf:
if( !bSpec ) // "Satellite"
- cInsert = '\xa4';
+ cInsert = sal_Unicode('\xa4');
break;
case 0x14:
if( !bSpec ) // "Para End" char
- cInsert = '\xb5';
+ cInsert = sal_Unicode('\xb5');
break;
case 0x15:
if( !bSpec ) // Juristenparagraph
{
cp_set::iterator aItr = maTOXEndCps.find((WW8_CP)nPosCp);
if (aItr == maTOXEndCps.end())
- cInsert = '\xa7';
+ cInsert = sal_Unicode('\xa7');
else
maTOXEndCps.erase(aItr);
}