diff options
-rw-r--r-- | include/svtools/optionsdrawinglayer.hxx | 2 | ||||
-rw-r--r-- | sc/source/ui/view/gridwin.cxx | 2 | ||||
-rw-r--r-- | svtools/source/toolpanel/paneltabbar.cxx | 2 | ||||
-rw-r--r-- | sw/source/core/crsr/viscrs.cxx | 4 | ||||
-rw-r--r-- | vcl/source/window/toolbox.cxx | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/include/svtools/optionsdrawinglayer.hxx b/include/svtools/optionsdrawinglayer.hxx index 8c1e4e17fa0d..b632d04c0905 100644 --- a/include/svtools/optionsdrawinglayer.hxx +++ b/include/svtools/optionsdrawinglayer.hxx @@ -141,7 +141,7 @@ class SVT_DLLPUBLIC SvtOptionsDrawinglayer sal_uInt16 GetTransparentSelectionPercent() const; sal_uInt16 GetSelectionMaximumLuminancePercent() const; - // get system hilight color, limited to the maximum allowed luminance + // get system highlight color, limited to the maximum allowed luminance // (defined in GetSelectionMaximumLuminancePercent() in SvtOptionsDrawinglayer, // combined with Application::GetSettings().GetStyleSettings().GetHighlightColor()) Color getHilightColor() const; diff --git a/sc/source/ui/view/gridwin.cxx b/sc/source/ui/view/gridwin.cxx index be97bc67ac20..8958b81464d0 100644 --- a/sc/source/ui/view/gridwin.cxx +++ b/sc/source/ui/view/gridwin.cxx @@ -5885,7 +5885,7 @@ void ScGridWindow::UpdateSelectionOverlay() aRanges.push_back(aRB); } - // get the system's hilight color + // get the system's highlight color const SvtOptionsDrawinglayer aSvtOptionsDrawinglayer; const Color aHighlight(aSvtOptionsDrawinglayer.getHilightColor()); diff --git a/svtools/source/toolpanel/paneltabbar.cxx b/svtools/source/toolpanel/paneltabbar.cxx index 710e7f778bee..3e77743fd65a 100644 --- a/svtools/source/toolpanel/paneltabbar.cxx +++ b/svtools/source/toolpanel/paneltabbar.cxx @@ -163,7 +163,7 @@ namespace svt aSelectionRect.Bottom() -= ITEM_OUTER_SPACE / 2; i_rActualWindow.DrawSelectionBackground( aSelectionRect, - ( bHovered || bFocused ) ? ( bActive ? 1 : 2 ) : 0 /* hilight */, + ( bHovered || bFocused ) ? ( bActive ? 1 : 2 ) : 0 /* highlight */, bActive /* check */, true /* border */, false /* ext border only */, diff --git a/sw/source/core/crsr/viscrs.cxx b/sw/source/core/crsr/viscrs.cxx index 40b795430b36..2d16947b6304 100644 --- a/sw/source/core/crsr/viscrs.cxx +++ b/sw/source/core/crsr/viscrs.cxx @@ -291,7 +291,7 @@ void SwSelPaintRects::Show() if (xTargetOverlay.is()) { - // get the system's hilight color + // get the system's highlight color const SvtOptionsDrawinglayer aSvtOptionsDrawinglayer; const Color aHighlight(aSvtOptionsDrawinglayer.getHilightColor()); @@ -398,7 +398,7 @@ void SwSelPaintRects::HighlightInputFld() if (xTargetOverlay.is()) { - // use system's hilight color with decreased luminance as highlight color + // use system's highlight color with decreased luminance as highlight color const SvtOptionsDrawinglayer aSvtOptionsDrawinglayer; Color aHighlight(aSvtOptionsDrawinglayer.getHilightColor()); aHighlight.DecreaseLuminance( 128 ); diff --git a/vcl/source/window/toolbox.cxx b/vcl/source/window/toolbox.cxx index 51eb9d99743e..965a0871e220 100644 --- a/vcl/source/window/toolbox.cxx +++ b/vcl/source/window/toolbox.cxx @@ -3545,7 +3545,7 @@ void ToolBox::MouseMove( const MouseEvent& rMEvt ) // only highlight when the focus is not inside a child window of a toolbox // eg, in a edit control - // and do not hilight when focus is in a different toolbox + // and do not highlight when focus is in a different toolbox bool bDrawHotSpot = true; Window *pWin = Application::GetFocusWindow(); if( pWin && pWin->ImplGetWindowImpl()->mbToolBox && pWin != this ) |