[Libreoffice-commits] core.git: sc/source

Stephan Bergmann sbergman at redhat.com
Thu Aug 27 23:46:24 PDT 2015


 sc/source/filter/orcus/interface.cxx |    3 +++
 1 file changed, 3 insertions(+)

New commits:
commit 3554d0a48a05206b894c3dec2f8c65e3b3c5119c
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Fri Aug 28 08:45:42 2015 +0200

    Work around loplugin:staticmethods
    
    (...in what appears to be work in progress code)
    
    Change-Id: Ibc30383e7a25b642db63cf022b3fae953c8fee50

diff --git a/sc/source/filter/orcus/interface.cxx b/sc/source/filter/orcus/interface.cxx
index c65324a..c1551f9 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():


More information about the Libreoffice-commits mailing list