summaryrefslogtreecommitdiff
path: root/sw/source/core/text/txtcache.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/core/text/txtcache.cxx')
-rw-r--r--sw/source/core/text/txtcache.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/core/text/txtcache.cxx b/sw/source/core/text/txtcache.cxx
index c120041bcfff..3c1ef3fc043b 100644
--- a/sw/source/core/text/txtcache.cxx
+++ b/sw/source/core/text/txtcache.cxx
@@ -21,8 +21,8 @@
#include "txtfrm.hxx"
#include "porlay.hxx"
-SwTextLine::SwTextLine( SwTextFrame *pFrame, SwParaPortion *pNew ) :
- SwCacheObj( static_cast<void*>(pFrame) ),
+SwTextLine::SwTextLine( SwTextFrame const *pFrame, SwParaPortion *pNew ) :
+ SwCacheObj( static_cast<void const *>(pFrame) ),
pLine( pNew )
{
}
@@ -33,7 +33,7 @@ SwTextLine::~SwTextLine()
SwCacheObj *SwTextLineAccess::NewObj()
{
- return new SwTextLine( const_cast<SwTextFrame *>(static_cast<SwTextFrame const *>(m_pOwner)) );
+ return new SwTextLine( static_cast<SwTextFrame const *>(m_pOwner) );
}
SwParaPortion *SwTextLineAccess::GetPara()