summaryrefslogtreecommitdiffstats
path: root/sw/source/core/txtnode/swfont.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/core/txtnode/swfont.cxx')
-rw-r--r--sw/source/core/txtnode/swfont.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sw/source/core/txtnode/swfont.cxx b/sw/source/core/txtnode/swfont.cxx
index 275e2a52d716..eef49fafef49 100644
--- a/sw/source/core/txtnode/swfont.cxx
+++ b/sw/source/core/txtnode/swfont.cxx
@@ -667,7 +667,7 @@ void SwFont::SetDiffFnt( const SfxItemSet *pAttrSet,
pBackColor = new Color( ((SvxBrushItem*)pItem)->GetColor() );
if( SFX_ITEM_SET == pAttrSet->GetItemState( RES_CHRATR_HIGHLIGHT,
sal_True, &pItem ))
- SetHighLightColor(((SvxBrushItem*)pItem)->GetColor());
+ SetHighlightColor(((SvxBrushItem*)pItem)->GetColor());
if( SFX_ITEM_SET == pAttrSet->GetItemState( RES_CHRATR_BOX,
sal_True, &pItem ))
{
@@ -715,7 +715,7 @@ SwFont::SwFont( const SwFont &rFont )
aSub[SW_CTL] = rFont.aSub[SW_CTL];
nActual = rFont.nActual;
pBackColor = rFont.pBackColor ? new Color( *rFont.pBackColor ) : NULL;
- m_aHighLightColor = rFont.m_aHighLightColor;
+ m_aHighlightColor = rFont.m_aHighlightColor;
m_aTopBorder = rFont.m_aTopBorder;
m_aBottomBorder = rFont.m_aBottomBorder;
m_aRightBorder = rFont.m_aRightBorder;
@@ -849,9 +849,9 @@ SwFont::SwFont( const SwAttrSet* pAttrSet,
pBackColor = NULL;
if( SFX_ITEM_SET == pAttrSet->GetItemState( RES_CHRATR_HIGHLIGHT,
sal_True, &pItem ))
- SetHighLightColor(((SvxBrushItem*)pItem)->GetColor());
+ SetHighlightColor(((SvxBrushItem*)pItem)->GetColor());
else
- SetHighLightColor(COL_TRANSPARENT);
+ SetHighlightColor(COL_TRANSPARENT);
if( SFX_ITEM_SET == pAttrSet->GetItemState( RES_CHRATR_BOX,
sal_True, &pItem ))
{
@@ -931,7 +931,7 @@ SwFont& SwFont::operator=( const SwFont &rFont )
nActual = rFont.nActual;
delete pBackColor;
pBackColor = rFont.pBackColor ? new Color( *rFont.pBackColor ) : NULL;
- m_aHighLightColor = rFont.m_aHighLightColor;
+ m_aHighlightColor = rFont.m_aHighlightColor;
m_aTopBorder = rFont.m_aTopBorder;
m_aBottomBorder = rFont.m_aBottomBorder;
m_aRightBorder = rFont.m_aRightBorder;