summaryrefslogtreecommitdiff
path: root/sw/source/filter/ww8/attributeoutputbase.hxx
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/ww8/attributeoutputbase.hxx
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/ww8/attributeoutputbase.hxx')
-rw-r--r--sw/source/filter/ww8/attributeoutputbase.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/filter/ww8/attributeoutputbase.hxx b/sw/source/filter/ww8/attributeoutputbase.hxx
index dfcbd9162ea4..b05c6804c7da 100644
--- a/sw/source/filter/ww8/attributeoutputbase.hxx
+++ b/sw/source/filter/ww8/attributeoutputbase.hxx
@@ -677,7 +677,7 @@ public:
class WW8Ruby
{
sal_Int32 m_nJC;
- sal_Char m_cDirective;
+ char m_cDirective;
sal_uInt32 m_nRubyHeight;
sal_uInt32 m_nBaseHeight;
OUString m_sFontFamily;
@@ -685,7 +685,7 @@ class WW8Ruby
public:
WW8Ruby(const SwTextNode& rNode, const SwFormatRuby& rRuby, const MSWordExportBase& rExport );
sal_Int32 GetJC() const { return m_nJC; }
- sal_Char GetDirective() const { return m_cDirective; }
+ char GetDirective() const { return m_cDirective; }
sal_uInt32 GetRubyHeight() const { return m_nRubyHeight; }
sal_uInt32 GetBaseHeight() const { return m_nBaseHeight; }
OUString const & GetFontFamily() const { return m_sFontFamily; }