diff options
author | David Tardon <dtardon@redhat.com> | 2012-03-29 08:05:28 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2012-03-29 08:06:19 +0200 |
commit | 39fb17daf029ac51480a7f49b764b238eb3c7e19 (patch) | |
tree | 006fb7ef7b87ed965f5faa44aab287cd077fa8f4 /editeng/source | |
parent | fa87093686614d75d63664722de103e47f91c7db (diff) |
ParaPortionList no longer a child class of DummyParaPortionList
Diffstat (limited to 'editeng/source')
-rw-r--r-- | editeng/source/editeng/impedit5.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editeng/source/editeng/impedit5.cxx b/editeng/source/editeng/impedit5.cxx index 1310064d26cc..bdaefbcb1802 100644 --- a/editeng/source/editeng/impedit5.cxx +++ b/editeng/source/editeng/impedit5.cxx @@ -536,7 +536,7 @@ void ImpEditEngine::SetAttribs( EditSelection aSel, const SfxItemSet& rSet, sal_ ParaPortion* pPortion = GetParaPortions()[nNode]; DBG_ASSERT( aEditDoc.SaveGetObject( nNode ), "Node not founden: SetAttribs" ); - DBG_ASSERT( GetParaPortions().GetObject( nNode ), "Portion not found: SetAttribs" ); + DBG_ASSERT( GetParaPortions()[ nNode ], "Portion not found: SetAttribs" ); xub_StrLen nStartPos = 0; xub_StrLen nEndPos = pNode->Len(); |