diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2003-04-04 17:03:17 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2003-04-04 17:03:17 +0000 |
commit | 7fdfc0854198ed84542fee14b95e87f0a963b727 (patch) | |
tree | f0261e0c064b467a420638e1422cdcc45c23d54d /svx/source/items/grfitem.cxx | |
parent | a919e9d2097fa26afbe193bfa811e38da895baaa (diff) |
INTEGRATION: CWS os7 (1.5.150); FILE MERGED
2003/03/28 12:02:33 os 1.5.150.1: #108241# set decimal separator correctly in SfxPoolItem::GetPresentation() methods
Diffstat (limited to 'svx/source/items/grfitem.cxx')
-rw-r--r-- | svx/source/items/grfitem.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/svx/source/items/grfitem.cxx b/svx/source/items/grfitem.cxx index 5839b8270dea..f8ba60347368 100644 --- a/svx/source/items/grfitem.cxx +++ b/svx/source/items/grfitem.cxx @@ -2,9 +2,9 @@ * * $RCSfile: grfitem.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: mba $ $Date: 2002-05-22 12:03:50 $ + * last change: $Author: hr $ $Date: 2003-04-04 18:03:17 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -217,13 +217,13 @@ SfxItemPresentation SvxGrfCrop::GetPresentation( if( SFX_ITEM_PRESENTATION_COMPLETE == ePres ) { ( rText.AssignAscii( "L: " )) += ::GetMetricText( GetLeft(), - eCoreUnit, SFX_MAPUNIT_MM ); + eCoreUnit, SFX_MAPUNIT_MM, pIntl ); ( rText.AppendAscii( " R: " )) += ::GetMetricText( GetRight(), - eCoreUnit, SFX_MAPUNIT_MM ); + eCoreUnit, SFX_MAPUNIT_MM, pIntl ); ( rText.AppendAscii( " T: " )) += ::GetMetricText( GetTop(), - eCoreUnit, SFX_MAPUNIT_MM ); + eCoreUnit, SFX_MAPUNIT_MM, pIntl ); ( rText.AppendAscii( " B: " )) += ::GetMetricText( GetBottom(), - eCoreUnit, SFX_MAPUNIT_MM ); + eCoreUnit, SFX_MAPUNIT_MM, pIntl ); } break; |