diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2016-09-28 14:42:30 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2016-09-28 14:42:30 +0200 |
commit | 406ae1e2ed34b2789de858163faa1a07bd141b7e (patch) | |
tree | 8438765442d1ca833ca6889a515dcec3b8de5770 /sw | |
parent | e59821570b1b2a79f2f13504ec0bdb0be133a9b5 (diff) |
sw: fix loplugin:staticanonymous
Change-Id: I8e58200129eea0eae37c335265bf634b390da28a
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/core/doc/docbm.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/doc/docbm.cxx b/sw/source/core/doc/docbm.cxx index b4660b068134..5d7549695181 100644 --- a/sw/source/core/doc/docbm.cxx +++ b/sw/source/core/doc/docbm.cxx @@ -270,7 +270,7 @@ namespace [&rName] (IDocumentMarkAccess::pMark_t const& rpMark) { return rpMark->GetName() == rName; } ); } - static void lcl_DebugMarks(IDocumentMarkAccess::container_t vMarks) + void lcl_DebugMarks(IDocumentMarkAccess::container_t vMarks) { #if OSL_DEBUG_LEVEL > 0 SAL_INFO("sw.core", vMarks.size() << " Marks"); |