summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorWastack <btomi96@gmail.com>2016-03-11 01:07:08 +0100
committerStephan Bergmann <sbergman@redhat.com>2016-03-11 08:59:30 +0000
commitce549d2a09ad9884a7e598162cf0ca6b6bc3150c (patch)
tree6f6033b12e959862c0a4bdb75e1505b6e4d449b5 /sw
parent9a13cff64783a7de3dce7d484c150605bd42a4d6 (diff)
tdf#97966: Remove 'static' keywords
Change-Id: Iced527f48afa828cc9acf5b6461674a2706cbcd7 Reviewed-on: https://gerrit.libreoffice.org/23135 Reviewed-by: Stephan Bergmann <sbergman@redhat.com> Tested-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'sw')
-rw-r--r--sw/source/core/crsr/crbm.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/core/crsr/crbm.cxx b/sw/source/core/crsr/crbm.cxx
index 89afac38c7c2..bd82a2457438 100644
--- a/sw/source/core/crsr/crbm.cxx
+++ b/sw/source/core/crsr/crbm.cxx
@@ -64,13 +64,13 @@ namespace
SwCursorSaveState m_aSaveState;
};
- static bool lcl_ReverseMarkOrderingByEnd(const IDocumentMarkAccess::pMark_t& rpFirst,
+ bool lcl_ReverseMarkOrderingByEnd(const IDocumentMarkAccess::pMark_t& rpFirst,
const IDocumentMarkAccess::pMark_t& rpSecond)
{
return rpFirst->GetMarkEnd() > rpSecond->GetMarkEnd();
}
- static bool lcl_IsInvisibleBookmark(IDocumentMarkAccess::pMark_t pMark)
+ bool lcl_IsInvisibleBookmark(IDocumentMarkAccess::pMark_t pMark)
{
return IDocumentMarkAccess::GetType(*pMark) != IDocumentMarkAccess::MarkType::BOOKMARK;
}