summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2017-06-20 07:34:27 +0300
committerTor Lillqvist <tml@collabora.com>2017-06-20 07:34:55 +0300
commit13ab6b5c16f8b1504cc7c36a8e1213950a51eefa (patch)
tree73fa20b86fec1f57eb26f304eda8869c6ffa372e /sc
parent60442414758cf5895143c8b6a8211797037ec3c8 (diff)
Avoid "this member function can be declared static [loplugin:staticmethods]"
Change-Id: If8e0810c4998b2d56609a0c9fe10ce061d1a6347
Diffstat (limited to 'sc')
-rw-r--r--sc/source/core/data/column2.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/sc/source/core/data/column2.cxx b/sc/source/core/data/column2.cxx
index 890e319e3d22..506e59006253 100644
--- a/sc/source/core/data/column2.cxx
+++ b/sc/source/core/data/column2.cxx
@@ -1559,6 +1559,8 @@ void ScColumn::CellStorageModified()
while (itAttr != maCellTextAttrs.end() && itAttr->type != sc::element_type_empty)
++itAttr;
}
+#else
+ (void) this; // Avoid "this member function can be declared static [loplugin:staticmethods]"
#endif
}