summaryrefslogtreecommitdiff
path: root/sw/source/filter/html/swhtml.cxx
diff options
context:
space:
mode:
authorOliver Specht <oliver.specht@cib.de>2015-09-30 16:10:07 +0200
committerOliver Specht <oliver.specht@cib.de>2015-10-06 07:29:37 +0000
commit89d39bc100aabf5dccbe77c0b5c0c85736e85b39 (patch)
tree871a91210913ecee91530c95392534bf18f80f3f /sw/source/filter/html/swhtml.cxx
parent32b9901dae7403453d773f5904de15551a323595 (diff)
tdf#94559: 4th step to remove rtti.hxx
replaced use of PTR_CAST, IS_TYPE, ISA in idl, editeng, sc, sd, sw, sfx2, sot, starmath Change-Id: I4a5bba4fdc4829099618c09b690c83f876a3d653 Reviewed-on: https://gerrit.libreoffice.org/19132 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Oliver Specht <oliver.specht@cib.de>
Diffstat (limited to 'sw/source/filter/html/swhtml.cxx')
-rw-r--r--sw/source/filter/html/swhtml.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/source/filter/html/swhtml.cxx b/sw/source/filter/html/swhtml.cxx
index 23b80878cbe4..6312eab62776 100644
--- a/sw/source/filter/html/swhtml.cxx
+++ b/sw/source/filter/html/swhtml.cxx
@@ -763,7 +763,7 @@ if( pSttNdIdx->GetIndex()+1 == pPam->GetBound( false ).nNode.GetIndex() )
pCNd->EndOfSectionIndex() && !bHasFlysOrMarks )
{
SwViewShell *pVSh = CheckActionViewShell();
- SwCrsrShell *pCrsrSh = pVSh && pVSh->ISA(SwCrsrShell)
+ SwCrsrShell *pCrsrSh = pVSh && dynamic_cast< const SwCrsrShell *>( pVSh ) != nullptr
? static_cast < SwCrsrShell * >( pVSh )
: 0;
if( pCrsrSh &&
@@ -2554,7 +2554,7 @@ SwViewShell *SwHTMLParser::CallStartAction( SwViewShell *pVSh, bool bChkPtr )
if( pActionViewShell )
{
- if( pActionViewShell->ISA( SwEditShell ) )
+ if( dynamic_cast< const SwEditShell *>( pActionViewShell ) != nullptr )
static_cast<SwEditShell*>(pActionViewShell)->StartAction();
else
pActionViewShell->StartAction();
@@ -2586,13 +2586,13 @@ SwViewShell *SwHTMLParser::CallEndAction( bool bChkAction, bool bChkPtr )
// set the cursor to the doc begin in all CrsrEditShells
for(SwViewShell& rSh : pActionViewShell->GetRingContainer())
{
- if( rSh.IsA( TYPE( SwCrsrShell ) ) )
+ if( dynamic_cast<const SwCrsrShell *>(&rSh) != nullptr )
static_cast<SwCrsrShell*>(&rSh)->SttEndDoc(true);
}
bSetCrsr = false;
}
- if( pActionViewShell->ISA( SwEditShell ) )
+ if( dynamic_cast< const SwEditShell *>( pActionViewShell ) != nullptr )
{
//Schon gescrollt?, dann dafuer sorgen, dass die View sich nicht bewegt!
const bool bOldLock = pActionViewShell->IsViewLocked();