summaryrefslogtreecommitdiff
path: root/vcl/source/gdi/impvect.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/gdi/impvect.cxx')
-rw-r--r--vcl/source/gdi/impvect.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/source/gdi/impvect.cxx b/vcl/source/gdi/impvect.cxx
index 60027e19cb1c..a750586fc38c 100644
--- a/vcl/source/gdi/impvect.cxx
+++ b/vcl/source/gdi/impvect.cxx
@@ -77,7 +77,7 @@ struct ChainMove { long nDX; long nDY; };
}
-static const ChainMove aImplMove[ 8 ] = {
+const ChainMove aImplMove[ 8 ] = {
{ 1, 0 },
{ 0, -1 },
{ -1, 0 },
@@ -88,7 +88,7 @@ static const ChainMove aImplMove[ 8 ] = {
{ 1, 1 }
};
-static const ChainMove aImplMoveInner[ 8 ] = {
+const ChainMove aImplMoveInner[ 8 ] = {
{ 0, 1 },
{ 1, 0 },
{ 0, -1 },
@@ -99,7 +99,7 @@ static const ChainMove aImplMoveInner[ 8 ] = {
{ -1, 0 }
};
-static const ChainMove aImplMoveOuter[ 8 ] = {
+const ChainMove aImplMoveOuter[ 8 ] = {
{ 0, -1 },
{ -1, 0 },
{ 0, 1 },