diff options
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/core/data/docpool.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/source/core/data/docpool.cxx b/sc/source/core/data/docpool.cxx index df7470f2cea7..49759cf3a778 100644 --- a/sc/source/core/data/docpool.cxx +++ b/sc/source/core/data/docpool.cxx @@ -693,7 +693,7 @@ static bool lcl_HFPresentation nTmp = rLRItem.GetRight(); nRightMargin = nTmp < 0 ? 0 : sal_uInt16(nTmp); - aText = EE_RESSTR(RID_SVXITEMS_LRSPACE_LEFT); + aText = EditResId::GetString(RID_SVXITEMS_LRSPACE_LEFT); if ( 100 != nPropLeftMargin ) { aText = aText + unicode::formatPercent(nPropLeftMargin, @@ -703,12 +703,12 @@ static bool lcl_HFPresentation { aText += GetMetricText( (long)nLeftMargin, eCoreMetric, ePresentationMetric, pIntl ); - aText += " " + EE_RESSTR(GetMetricId(ePresentationMetric)); + aText += " " + EditResId::GetString(GetMetricId(ePresentationMetric)); } aText += cpDelim; // We don't have a nPropFirstLineOfst - aText += EE_RESSTR(RID_SVXITEMS_LRSPACE_RIGHT); + aText += EditResId::GetString(RID_SVXITEMS_LRSPACE_RIGHT); if ( 100 != nPropRightMargin ) { aText = aText + unicode::formatPercent(nPropLeftMargin, @@ -718,7 +718,7 @@ static bool lcl_HFPresentation { aText += GetMetricText( (long)nRightMargin, eCoreMetric, ePresentationMetric, pIntl ); - aText += " " + EE_RESSTR(GetMetricId(ePresentationMetric)); + aText += " " + EditResId::GetString(GetMetricId(ePresentationMetric)); } } break; |