diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2020-07-02 07:16:17 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-07-02 08:46:13 +0200 |
commit | 770ca016b9301cc02beab345f02c085e27f52e71 (patch) | |
tree | dc298ba3be11c48f27e4a2358e2869e0c33315f7 /svtools/source/uno/unoevent.cxx | |
parent | 699a31ec958a8fdc3ccf4a021298dd7c1c6ee714 (diff) |
Upcoming improved loplugin:staticanonymous -> redundantstatic: svtools
Change-Id: I947b8def12bf27093dc9ad95077c0718dec959a3
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/97696
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'svtools/source/uno/unoevent.cxx')
-rw-r--r-- | svtools/source/uno/unoevent.cxx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/svtools/source/uno/unoevent.cxx b/svtools/source/uno/unoevent.cxx index 244ee65498e9..5b24cffd068b 100644 --- a/svtools/source/uno/unoevent.cxx +++ b/svtools/source/uno/unoevent.cxx @@ -33,13 +33,13 @@ using css::lang::IllegalArgumentException; using css::beans::PropertyValue; -static const char sAPI_ServiceName[] = "com.sun.star.container.XNameReplace"; -static const char sEventType[] = "EventType"; -static const char sMacroName[] = "MacroName"; -static const char sLibrary[] = "Library"; -static const char sStarBasic[] = "StarBasic"; -static const char sScript[] = "Script"; -static const char sNone[] = "None"; +const char sAPI_ServiceName[] = "com.sun.star.container.XNameReplace"; +const char sEventType[] = "EventType"; +const char sMacroName[] = "MacroName"; +const char sLibrary[] = "Library"; +const char sStarBasic[] = "StarBasic"; +const char sScript[] = "Script"; +const char sNone[] = "None"; namespace { |