summaryrefslogtreecommitdiff
path: root/sw/source/filter/html/htmlatr.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-12-23 10:21:49 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-12-23 10:50:52 +0100
commit40a7abaab8bead1b1f04774324b7d652ce7f75f1 (patch)
tree4aaed5c2679c23357cd64177514480ab4080975f /sw/source/filter/html/htmlatr.cxx
parent68a5afaaabd0c75bba3439cfdff90fb75d1cdd3f (diff)
sal_Char->char in sw
Change-Id: I63fb87a8e8eaf9c9da7bf7b8b6f5706222ffcc07 Reviewed-on: https://gerrit.libreoffice.org/85730 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw/source/filter/html/htmlatr.cxx')
-rw-r--r--sw/source/filter/html/htmlatr.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/filter/html/htmlatr.cxx b/sw/source/filter/html/htmlatr.cxx
index d21caceb42ea..7c1258ae90bd 100644
--- a/sw/source/filter/html/htmlatr.cxx
+++ b/sw/source/filter/html/htmlatr.cxx
@@ -2545,7 +2545,7 @@ Writer& OutHTML_SwTextNode( Writer& rWrt, const SwContentNode& rNode )
if( rHTMLWrt.m_bClearLeft || rHTMLWrt.m_bClearRight )
{
- const sal_Char* pString;
+ const char* pString;
if( rHTMLWrt.m_bClearLeft )
{
if( rHTMLWrt.m_bClearRight )
@@ -2974,7 +2974,7 @@ Writer& OutHTML_INetFormat( Writer& rWrt, const SwFormatINetFormat& rINetFormat,
if( bScriptDependent )
{
sOut += " " OOO_STRING_SVTOOLS_HTML_O_class "=\"";
- const sal_Char* pStr = nullptr;
+ const char* pStr = nullptr;
switch( rHTMLWrt.m_nCSS1Script )
{
case CSS1_OUTMODE_WESTERN:
@@ -3172,7 +3172,7 @@ static Writer& OutHTML_SvxAdjust( Writer& rWrt, const SfxPoolItem& rHt )
return rWrt;
const SvxAdjustItem& rAdjust = static_cast<const SvxAdjustItem&>(rHt);
- const sal_Char* pStr = nullptr;
+ const char* pStr = nullptr;
switch( rAdjust.GetAdjust() )
{
case SvxAdjust::Center: pStr = OOO_STRING_SVTOOLS_HTML_AL_center; break;