Kaydet (Commit) 4e1d9ab9 authored tarafından Bjoern Michaelsen's avatar Bjoern Michaelsen

unnecessary cast

Change-Id: Iaf5f3dee59b2ee045a524059c4342465ce3b3a0c
üst 22556276
...@@ -724,7 +724,7 @@ bool SwFEShell::Paste( SwDoc* pClpDoc, bool bIncludingPageFrames ) ...@@ -724,7 +724,7 @@ bool SwFEShell::Paste( SwDoc* pClpDoc, bool bIncludingPageFrames )
// cursor of the ring points to identical document positions. Then // cursor of the ring points to identical document positions. Then
// we should avoid double insertion of text portions... // we should avoid double insertion of text portions...
while( nCursorCount > 1 && *pCurrCrsr->GetPoint() == while( nCursorCount > 1 && *pCurrCrsr->GetPoint() ==
*(static_cast<SwPaM*>(pCurrCrsr->GetPrev())->GetPoint()) ) *(pCurrCrsr->GetPrev()->GetPoint()) )
{ {
--nCursorCount; --nCursorCount;
pCurrCrsr = pCurrCrsr->GetNext(); pCurrCrsr = pCurrCrsr->GetNext();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment