summaryrefslogtreecommitdiff
path: root/sw/source/uibase/utlui/content.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/uibase/utlui/content.cxx')
-rw-r--r--sw/source/uibase/utlui/content.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/source/uibase/utlui/content.cxx b/sw/source/uibase/utlui/content.cxx
index ae0bf5c2a009..b1668522694d 100644
--- a/sw/source/uibase/utlui/content.cxx
+++ b/sw/source/uibase/utlui/content.cxx
@@ -118,17 +118,17 @@ bool SwContentTree::bIsInDrag = false;
namespace
{
- static bool lcl_IsContent(const SvTreeListEntry* pEntry)
+ bool lcl_IsContent(const SvTreeListEntry* pEntry)
{
return static_cast<const SwTypeNumber*>(pEntry->GetUserData())->GetTypeId() == CTYPE_CNT;
}
- static bool lcl_IsContentType(const SvTreeListEntry* pEntry)
+ bool lcl_IsContentType(const SvTreeListEntry* pEntry)
{
return static_cast<const SwTypeNumber*>(pEntry->GetUserData())->GetTypeId() == CTYPE_CTT;
}
- static bool lcl_FindShell(SwWrtShell* pShell)
+ bool lcl_FindShell(SwWrtShell* pShell)
{
bool bFound = false;
SwView *pView = SwModule::GetFirstView();
@@ -144,7 +144,7 @@ namespace
return bFound;
}
- static bool lcl_IsUiVisibleBookmark(const IDocumentMarkAccess::pMark_t& rpMark)
+ bool lcl_IsUiVisibleBookmark(const IDocumentMarkAccess::pMark_t& rpMark)
{
return IDocumentMarkAccess::GetType(*rpMark) == IDocumentMarkAccess::MarkType::BOOKMARK;
}