summaryrefslogtreecommitdiff
path: root/sw/source/core/doc
diff options
context:
space:
mode:
authorBjoern Michaelsen <bjoern.michaelsen@canonical.com>2014-12-03 16:48:37 +0100
committerBjoern Michaelsen <bjoern.michaelsen@canonical.com>2014-12-04 01:09:39 +0100
commit697cb1f5e1adaddfd7d45486996f54fb969b95cc (patch)
tree19bb4bf7895f11930c27f83086fc53a0ab29059e /sw/source/core/doc
parent08bc3e1fa36e3b4c88033594fb48a788618d37b4 (diff)
unnecessary cast
Change-Id: I7b8bbf5e2577fc5f3a0a40552a0f2f410bd55a6a
Diffstat (limited to 'sw/source/core/doc')
-rw-r--r--sw/source/core/doc/doccomp.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/doc/doccomp.cxx b/sw/source/core/doc/doccomp.cxx
index a908a2f7d61a..a8e280ab64c8 100644
--- a/sw/source/core/doc/doccomp.cxx
+++ b/sw/source/core/doc/doccomp.cxx
@@ -1740,7 +1740,7 @@ void SwCompareData::SetRedlinesToDoc( bool bUseDocInfo )
else
{
// are consecutive, so combine
- rSttEnd = *static_cast<SwPaM*>(pTmp->GetNext())->End();
+ rSttEnd = *(pTmp->GetNext())->End();
delete pTmp->GetNext();
}
}