From 40a7abaab8bead1b1f04774324b7d652ce7f75f1 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Mon, 23 Dec 2019 10:21:49 +0200 Subject: sal_Char->char in sw Change-Id: I63fb87a8e8eaf9c9da7bf7b8b6f5706222ffcc07 Reviewed-on: https://gerrit.libreoffice.org/85730 Tested-by: Jenkins Reviewed-by: Noel Grandin --- sw/source/filter/html/htmlnumwriter.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sw/source/filter/html/htmlnumwriter.cxx') diff --git a/sw/source/filter/html/htmlnumwriter.cxx b/sw/source/filter/html/htmlnumwriter.cxx index 9658b510a3a4..8977e0dbf684 100644 --- a/sw/source/filter/html/htmlnumwriter.cxx +++ b/sw/source/filter/html/htmlnumwriter.cxx @@ -183,7 +183,7 @@ Writer& OutHTML_NumberBulletListStart( SwHTMLWriter& rWrt, sOut += OString(OOO_STRING_SVTOOLS_HTML_unorderlist); // determine the type by the bullet character - const sal_Char *pStr = nullptr; + const char *pStr = nullptr; switch( rNumFormat.GetBulletChar() ) { case HTML_BULLETCHAR_DISC: @@ -218,7 +218,7 @@ Writer& OutHTML_NumberBulletListStart( SwHTMLWriter& rWrt, sOut += OString(OOO_STRING_SVTOOLS_HTML_orderlist); // determine the type by the format - sal_Char cType = 0; + char cType = 0; switch( eType ) { case SVX_NUM_CHARS_UPPER_LETTER: -- cgit