summaryrefslogtreecommitdiffstats
path: root/xmloff/source/text/XMLTextFrameHyperlinkContext.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmloff/source/text/XMLTextFrameHyperlinkContext.cxx')
-rw-r--r--xmloff/source/text/XMLTextFrameHyperlinkContext.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/xmloff/source/text/XMLTextFrameHyperlinkContext.cxx b/xmloff/source/text/XMLTextFrameHyperlinkContext.cxx
index 1e76bd351ec4..fa346909fb32 100644
--- a/xmloff/source/text/XMLTextFrameHyperlinkContext.cxx
+++ b/xmloff/source/text/XMLTextFrameHyperlinkContext.cxx
@@ -138,7 +138,7 @@ TextContentAnchorType XMLTextFrameHyperlinkContext::GetAnchorType() const
if( xFrameContext.Is() )
{
SvXMLImportContext *pContext = &xFrameContext;
- return PTR_CAST( XMLTextFrameContext, pContext ) ->GetAnchorType();
+ return dynamic_cast<XMLTextFrameContext*>( pContext ) ->GetAnchorType( );
}
else
return eDefaultAnchorType;
@@ -151,7 +151,7 @@ Reference < XTextContent > XMLTextFrameHyperlinkContext::GetTextContent() const
if( xFrameContext.Is() )
{
SvXMLImportContext *pContext = &xFrameContext;
- xTxt = PTR_CAST( XMLTextFrameContext, pContext )->GetTextContent();
+ xTxt = dynamic_cast<XMLTextFrameContext*>( pContext )->GetTextContent( );
}
return xTxt;
@@ -164,7 +164,7 @@ Reference < drawing::XShape > XMLTextFrameHyperlinkContext::GetShape() const
if( xFrameContext.Is() )
{
SvXMLImportContext *pContext = &xFrameContext;
- xShape = PTR_CAST( XMLTextFrameContext, pContext )->GetShape();
+ xShape = dynamic_cast<XMLTextFrameContext*>( pContext )->GetShape( );
}
return xShape;