summaryrefslogtreecommitdiff
path: root/sw/source/uibase/docvw/HeaderFooterWin.cxx
diff options
context:
space:
mode:
authorWastack <btomi96@gmail.com>2016-03-31 08:47:40 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-04-01 06:46:33 +0000
commit9af411abce1e22d55b73d5bbac3b7a6a8535eb3b (patch)
tree1f4ae767e429af067f97bd07c305b1f9ed35839f /sw/source/uibase/docvw/HeaderFooterWin.cxx
parentcb495d71063d60da46215a2510736eccd910fa7a (diff)
tdf#97966 Drop 'static' keywords
Including no keywords from extern "C" blocks Change-Id: Ie3160af9decf04ceeda02dc20a6518afaa80f972 Reviewed-on: https://gerrit.libreoffice.org/23677 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'sw/source/uibase/docvw/HeaderFooterWin.cxx')
-rw-r--r--sw/source/uibase/docvw/HeaderFooterWin.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/uibase/docvw/HeaderFooterWin.cxx b/sw/source/uibase/docvw/HeaderFooterWin.cxx
index 25f706049841..54ccf57235d8 100644
--- a/sw/source/uibase/docvw/HeaderFooterWin.cxx
+++ b/sw/source/uibase/docvw/HeaderFooterWin.cxx
@@ -60,7 +60,7 @@ using namespace drawinglayer::attribute;
namespace
{
- static basegfx::BColor lcl_GetFillColor(const basegfx::BColor& rLineColor)
+ basegfx::BColor lcl_GetFillColor(const basegfx::BColor& rLineColor)
{
basegfx::BColor aHslLine = basegfx::tools::rgb2hsl(rLineColor);
double nLuminance = aHslLine.getZ() * 2.5;
@@ -72,7 +72,7 @@ namespace
return basegfx::tools::hsl2rgb( aHslLine );
}
- static basegfx::BColor lcl_GetLighterGradientColor(const basegfx::BColor& rDarkColor)
+ basegfx::BColor lcl_GetLighterGradientColor(const basegfx::BColor& rDarkColor)
{
basegfx::BColor aHslDark = basegfx::tools::rgb2hsl(rDarkColor);
double nLuminance = aHslDark.getZ() * 255 + 20;
@@ -80,7 +80,7 @@ namespace
return basegfx::tools::hsl2rgb( aHslDark );
}
- static B2DPolygon lcl_GetPolygon( const Rectangle& rRect, bool bHeader )
+ B2DPolygon lcl_GetPolygon( const Rectangle& rRect, bool bHeader )
{
const double nRadius = 3;
const double nKappa((M_SQRT2 - 1.0) * 4.0 / 3.0);