diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-08-28 08:45:42 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-08-28 08:46:03 +0200 |
commit | 3554d0a48a05206b894c3dec2f8c65e3b3c5119c (patch) | |
tree | d0538fcbb1ad1f5a0f96313503c1f3b1ee2135f4 /sc | |
parent | f45183fcdef53237af6aff62211751c6b4f542c0 (diff) |
Work around loplugin:staticmethods
(...in what appears to be work in progress code)
Change-Id: Ibc30383e7a25b642db63cf022b3fae953c8fee50
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/orcus/interface.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sc/source/filter/orcus/interface.cxx b/sc/source/filter/orcus/interface.cxx index c65324a5a858..c1551f9999b6 100644 --- a/sc/source/filter/orcus/interface.cxx +++ b/sc/source/filter/orcus/interface.cxx @@ -751,6 +751,7 @@ ScOrcusStyles::protection::protection(): void ScOrcusStyles::protection::applyToItemSet(SfxItemSet& /*rSet*/) const { + (void)this; // loplugin:staticmethods } ScOrcusStyles::border::border() @@ -759,10 +760,12 @@ ScOrcusStyles::border::border() void ScOrcusStyles::border::applyToItemSet(SfxItemSet& /*rSet*/) const { + (void)this; // loplugin:staticmethods } void ScOrcusStyles::number_format::applyToItemSet(SfxItemSet& /*rSet*/) const { + (void)this; // loplugin:staticmethods } ScOrcusStyles::xf::xf(): |