diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2020-07-02 08:11:54 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-07-02 09:23:04 +0200 |
commit | 13c4a795aa42250a31977068a3fbb2dc5162e443 (patch) | |
tree | 5971f6c9d4b2fcc3bbf85d69565930091d1d5c7e /svx/source/dialog/rubydialog.cxx | |
parent | 42f7b3605351a9026f2ce6e4a71cba0444b06569 (diff) |
Upcoming improved loplugin:staticanonymous -> redundantstatic: svx
Change-Id: I6f4b927f9c869925825cc83cc36f0494d06c8faa
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/97698
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'svx/source/dialog/rubydialog.cxx')
-rw-r--r-- | svx/source/dialog/rubydialog.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/svx/source/dialog/rubydialog.cxx b/svx/source/dialog/rubydialog.cxx index 4a73ad6636d5..550e58e26527 100644 --- a/svx/source/dialog/rubydialog.cxx +++ b/svx/source/dialog/rubydialog.cxx @@ -58,11 +58,11 @@ SFX_IMPL_CHILDWINDOW(SvxRubyChildWindow, SID_RUBY_DIALOG); namespace { -static const char cRubyBaseText[] = "RubyBaseText"; -static const char cRubyText[] = "RubyText"; -static const char cRubyAdjust[] = "RubyAdjust"; -static const char cRubyPosition[] = "RubyPosition"; -static const char cRubyCharStyleName[] = "RubyCharStyleName"; +const char cRubyBaseText[] = "RubyBaseText"; +const char cRubyText[] = "RubyText"; +const char cRubyAdjust[] = "RubyAdjust"; +const char cRubyPosition[] = "RubyPosition"; +const char cRubyCharStyleName[] = "RubyCharStyleName"; } // end anonymous namespace |