diff options
author | Tor Lillqvist <tml@iki.fi> | 2011-10-20 08:32:16 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2011-10-20 08:41:36 +0300 |
commit | 62f4128d74179c6211fc961845182bf2956e3323 (patch) | |
tree | 272b9b07e397f1eeae41f419801553a9bc377209 /sw | |
parent | 3f3c2a7bd3bb238412a787c2e59290285a8cc51e (diff) |
char can be unsigned, use sal_Int8
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/core/doc/docnum.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/doc/docnum.cxx b/sw/source/core/doc/docnum.cxx index acbef13a474b..9b0c4224569f 100644 --- a/sw/source/core/doc/docnum.cxx +++ b/sw/source/core/doc/docnum.cxx @@ -1661,7 +1661,7 @@ sal_Bool SwDoc::NumUpDown( const SwPaM& rPam, sal_Bool bDown ) } sal_Bool bRet = sal_True; - char nDiff = bDown ? 1 : -1; + sal_Int8 nDiff = bDown ? 1 : -1; if (bOnlyOutline) bRet = OutlineUpDown(rPam, nDiff); |