diff options
Diffstat (limited to 'sw/source/uibase/utlui/content.cxx')
-rw-r--r-- | sw/source/uibase/utlui/content.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/uibase/utlui/content.cxx b/sw/source/uibase/utlui/content.cxx index ef1fd2e90735..7567a201ef48 100644 --- a/sw/source/uibase/utlui/content.cxx +++ b/sw/source/uibase/utlui/content.cxx @@ -116,12 +116,12 @@ namespace { static bool lcl_IsContent(const SvTreeListEntry* pEntry) { - return ((const SwTypeNumber*)pEntry->GetUserData())->GetTypeId() == CTYPE_CNT; + return static_cast<const SwTypeNumber*>(pEntry->GetUserData())->GetTypeId() == CTYPE_CNT; } static bool lcl_IsContentType(const SvTreeListEntry* pEntry) { - return ((const SwTypeNumber*)pEntry->GetUserData())->GetTypeId() == CTYPE_CTT; + return static_cast<const SwTypeNumber*>(pEntry->GetUserData())->GetTypeId() == CTYPE_CTT; } static bool lcl_FindShell(SwWrtShell* pShell) |