diff options
author | Rüdiger Timm <rt@openoffice.org> | 2008-06-06 11:27:08 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2008-06-06 11:27:08 +0000 |
commit | ac725ded86cddf9f594e191823e3fbc898b31809 (patch) | |
tree | a0c77ef693a4c77b7458e269f3cdb637dbd2d93d /svx/source | |
parent | 281ae6f549d7651b901ca7e71c8404b24bcd7dbb (diff) |
INTEGRATION: CWS impressodf12 (1.62.352); FILE MERGED
2008/04/25 09:00:26 cl 1.62.352.2: RESYNC: (1.62-1.63); FILE MERGED
2008/04/10 16:50:53 cl 1.62.352.1: #i35937# allow paragraph depth of -1 to switch of numbering
Diffstat (limited to 'svx/source')
-rw-r--r-- | svx/source/editeng/impedit.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/editeng/impedit.cxx b/svx/source/editeng/impedit.cxx index 942240606a9b..19b4d4faf0ae 100644 --- a/svx/source/editeng/impedit.cxx +++ b/svx/source/editeng/impedit.cxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: impedit.cxx,v $ - * $Revision: 1.63 $ + * $Revision: 1.64 $ * * This file is part of OpenOffice.org. * @@ -1586,10 +1586,10 @@ void ImpEditView::dragGestureRecognized( const ::com::sun::star::datatransfer::d pDragAndDropInfo->bOutlinerMode = TRUE; EditPaM aStartPaM( pEditEngine->pImpEditEngine->GetEditDoc().GetObject( nPara ), 0 ); EditPaM aEndPaM( aStartPaM ); - const SfxUInt16Item& rLevel = (const SfxUInt16Item&) pEditEngine->GetParaAttrib( nPara, EE_PARA_OUTLLEVEL ); + const SfxInt16Item& rLevel = (const SfxInt16Item&) pEditEngine->GetParaAttrib( nPara, EE_PARA_OUTLLEVEL ); for ( USHORT n = nPara +1; n < pEditEngine->pImpEditEngine->GetEditDoc().Count(); n++ ) { - const SfxUInt16Item& rL = (const SfxUInt16Item&) pEditEngine->GetParaAttrib( n, EE_PARA_OUTLLEVEL ); + const SfxInt16Item& rL = (const SfxInt16Item&) pEditEngine->GetParaAttrib( n, EE_PARA_OUTLLEVEL ); if ( rL.GetValue() > rLevel.GetValue() ) { aEndPaM.SetNode( pEditEngine->pImpEditEngine->GetEditDoc().GetObject( n ) ); |