diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2020-07-01 23:49:54 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-07-02 07:11:15 +0200 |
commit | d72e9cc0d1a91bf6283dcc5d3d96ae16e7014454 (patch) | |
tree | 6dfee2b5cc7e982ca30e2867740044abee42def7 /sot | |
parent | f9766129b660193a886be36b74f4ca438047c778 (diff) |
Upcoming improved loplugin:staticanonymous -> redundantstatic: sot
Change-Id: I3e751a59eb6d5f95a331627d0fcd776b193b05b2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/97667
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'sot')
-rw-r--r-- | sot/source/sdstor/stgelem.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sot/source/sdstor/stgelem.cxx b/sot/source/sdstor/stgelem.cxx index 43f4faf0251d..ff41d8d70f9c 100644 --- a/sot/source/sdstor/stgelem.cxx +++ b/sot/source/sdstor/stgelem.cxx @@ -28,9 +28,9 @@ #include "stgelem.hxx" #include "stgio.hxx" -static const sal_uInt16 nMaxLegalStr = 31; +const sal_uInt16 nMaxLegalStr = 31; -static const sal_uInt8 cStgSignature[ 8 ] = { 0xD0,0xCF,0x11,0xE0,0xA1,0xB1,0x1A,0xE1 }; +const sal_uInt8 cStgSignature[ 8 ] = { 0xD0,0xCF,0x11,0xE0,0xA1,0xB1,0x1A,0xE1 }; ////////////////////////////// struct ClsId |