Kaydet (Commit) 21bfc10b authored tarafından Bjoern Michaelsen's avatar Bjoern Michaelsen

unnecessary cast

Change-Id: I7a5d7bd2685297c9ce29dfe6d421c679dec0294d
üst ada94e72
...@@ -1196,7 +1196,7 @@ void SwAutoFormat::DelMoreLinesBlanks( bool bWithLineBreaks ) ...@@ -1196,7 +1196,7 @@ void SwAutoFormat::DelMoreLinesBlanks( bool bWithLineBreaks )
SwPaM* pNxt; SwPaM* pNxt;
do { do {
pNxt = static_cast<SwPaM*>(m_aDelPam.GetNext()); pNxt = m_aDelPam.GetNext();
if( pNxt->HasMark() && *pNxt->GetPoint() != *pNxt->GetMark() ) if( pNxt->HasMark() && *pNxt->GetPoint() != *pNxt->GetMark() )
{ {
bool bHasBlnks = HasSelBlanks( *pNxt ); bool bHasBlnks = HasSelBlanks( *pNxt );
......
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