diff options
author | RĂ¼diger Timm <rt@openoffice.org> | 2008-06-06 10:45:23 +0000 |
---|---|---|
committer | RĂ¼diger Timm <rt@openoffice.org> | 2008-06-06 10:45:23 +0000 |
commit | 65832bae105cf2e71bf93f71e4dc3ab98f21ca43 (patch) | |
tree | 7edbc6944057f968a7afb94919f6b866dc42d17c /starmath | |
parent | d24bcadac2dd18be2dac4c2310d4f77f3c374422 (diff) |
INTEGRATION: CWS impressodf12 (1.34.8); FILE MERGED
2008/05/26 16:17:00 cl 1.34.8.2: RESYNC: (1.34-1.35); FILE MERGED
2008/04/28 11:34:50 cl 1.34.8.1: changed depth from USHORT to sal_Int16
Diffstat (limited to 'starmath')
-rw-r--r-- | starmath/source/accessibility.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/starmath/source/accessibility.cxx b/starmath/source/accessibility.cxx index aece9fa1dd..356a9ab63e 100644 --- a/starmath/source/accessibility.cxx +++ b/starmath/source/accessibility.cxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: accessibility.cxx,v $ - * $Revision: 1.35 $ + * $Revision: 1.36 $ * * This file is part of OpenOffice.org. * @@ -1448,16 +1448,16 @@ sal_Bool SmTextForwarder::QuickFormatDoc( BOOL /*bFull*/ ) return bRes; } -USHORT SmTextForwarder::GetDepth( USHORT /*nPara*/ ) const +sal_Int16 SmTextForwarder::GetDepth( USHORT /*nPara*/ ) const { // math has no outliner... - return 0; + return -1; } -sal_Bool SmTextForwarder::SetDepth( USHORT /*nPara*/, USHORT nNewDepth ) +sal_Bool SmTextForwarder::SetDepth( USHORT /*nPara*/, sal_Int16 nNewDepth ) { // math has no outliner... - return 0 == nNewDepth; // is it the value from 'GetDepth' ? + return -1 == nNewDepth; // is it the value from 'GetDepth' ? } sal_Bool SmTextForwarder::Delete( const ESelection& rSelection ) |