summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2008-06-06 11:24:54 +0000
committerRüdiger Timm <rt@openoffice.org>2008-06-06 11:24:54 +0000
commitc81a39cdb02a2a5b2bd9c41ab266a61e8dc5a985 (patch)
tree59e9b822f2888e15007a181a552bb2132e6ab396 /svx
parent4efacbc725c462f17f4e560345e9d1c5ca9d4bd7 (diff)
INTEGRATION: CWS impressodf12 (1.20.334); FILE MERGED
2008/05/15 14:25:44 cl 1.20.334.3: #i35937# outline level is signed 16 bit now 2008/04/25 09:00:09 cl 1.20.334.2: RESYNC: (1.20-1.21); FILE MERGED 2008/04/24 15:24:38 cl 1.20.334.1: #i35937# converted EE_PARA_BULLETSTATE to void item
Diffstat (limited to 'svx')
-rw-r--r--svx/source/editeng/editdbg.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/editeng/editdbg.cxx b/svx/source/editeng/editdbg.cxx
index 11e84de35053..19cace6abc35 100644
--- a/svx/source/editeng/editdbg.cxx
+++ b/svx/source/editeng/editdbg.cxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: editdbg.cxx,v $
- * $Revision: 1.21 $
+ * $Revision: 1.22 $
*
* This file is part of OpenOffice.org.
*
@@ -126,7 +126,7 @@ ByteString DbgOutItem( const SfxItemPool& rPool, const SfxPoolItem& rItem )
break;
case EE_PARA_BULLETSTATE:
aDebStr += "ShowBullet=";
- aDebStr += ByteString::CreateFromInt32( ((SfxUInt16Item&)rItem).GetValue() );
+ aDebStr += ByteString::CreateFromInt32( ((SfxBoolItem&)rItem).GetValue() );
break;
case EE_PARA_HYPHENATE:
aDebStr += "Hyphenate=";
@@ -134,7 +134,7 @@ ByteString DbgOutItem( const SfxItemPool& rPool, const SfxPoolItem& rItem )
break;
case EE_PARA_OUTLLEVEL:
aDebStr += "Level=";
- aDebStr += ByteString::CreateFromInt32( ((SfxUInt16Item&)rItem).GetValue() );
+ aDebStr += ByteString::CreateFromInt32( ((SfxInt16Item&)rItem).GetValue() );
break;
case EE_PARA_ULSPACE:
aDebStr += "SB=";