diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2020-07-01 07:13:48 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-07-01 08:40:16 +0200 |
commit | 45751ae0fdb7df432290e9465ff51171537cbf5f (patch) | |
tree | e098116f91620583898d1d821788b21647c34d49 /emfio | |
parent | 6e6772e7739aaee09d0463ddf1be3b0c4039e1c5 (diff) |
Upcoming improved loplugin:staticanonymous -> redundantstatic: emfio
Change-Id: Id7ceb329a6fa6f2af15bf4599ef97dcbd44fa64d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/97559
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'emfio')
-rw-r--r-- | emfio/source/emfuno/emfuno.cxx | 2 | ||||
-rw-r--r-- | emfio/source/reader/wmfreader.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/emfio/source/emfuno/emfuno.cxx b/emfio/source/emfuno/emfuno.cxx index 1bf9e098d414..4b55eb6c54fb 100644 --- a/emfio/source/emfuno/emfuno.cxx +++ b/emfio/source/emfuno/emfuno.cxx @@ -27,7 +27,7 @@ namespace { -static cppu::ImplementationEntry const services[] = { +cppu::ImplementationEntry const services[] = { { &emfio::emfreader::XEmfParser_createInstance, &emfio::emfreader::XEmfParser_getImplementationName, &emfio::emfreader::XEmfParser_getSupportedServiceNames, diff --git a/emfio/source/reader/wmfreader.cxx b/emfio/source/reader/wmfreader.cxx index aa1c2be7a00e..c18189cc9734 100644 --- a/emfio/source/reader/wmfreader.cxx +++ b/emfio/source/reader/wmfreader.cxx @@ -1236,7 +1236,7 @@ namespace emfio } } - static const long aMaxWidth = 1024; + const long aMaxWidth = 1024; bool WmfReader::ReadHeader() { |