diff options
author | Bjoern Michaelsen <bjoern.michaelsen@canonical.com> | 2017-03-17 16:09:35 +0100 |
---|---|---|
committer | Björn Michaelsen <bjoern.michaelsen@canonical.com> | 2017-03-18 00:35:05 +0000 |
commit | c16a4380fe6bdf6782ef706f4f92d904e0413820 (patch) | |
tree | 1dd34f4e640f8cbdc3d381d98e18ea1f8000e383 /svx/source/xoutdev/xattr.cxx | |
parent | 93412700af6a6f6b6caa645434b7f40c92a7615b (diff) |
remove EE_RESSTR preprocessor abuse
Change-Id: I83b35c4e2d4275ac76a36bec03807be69a605c58
Reviewed-on: https://gerrit.libreoffice.org/35370
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Björn Michaelsen <bjoern.michaelsen@canonical.com>
Diffstat (limited to 'svx/source/xoutdev/xattr.cxx')
-rw-r--r-- | svx/source/xoutdev/xattr.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/xoutdev/xattr.cxx b/svx/source/xoutdev/xattr.cxx index de6dac451146..f03453c8670e 100644 --- a/svx/source/xoutdev/xattr.cxx +++ b/svx/source/xoutdev/xattr.cxx @@ -1044,7 +1044,7 @@ bool XLineWidthItem::GetPresentation { rText = GetMetricText( (long) GetValue(), eCoreUnit, ePresUnit, pIntl) + - " " + EE_RESSTR( GetMetricId( ePresUnit) ); + " " + EditResId::GetString( GetMetricId( ePresUnit) ); return true; } @@ -1935,7 +1935,7 @@ bool XLineStartWidthItem::GetPresentation { rText = GetMetricText( (long) GetValue(), eCoreUnit, ePresUnit, pIntl) + - " " + EE_RESSTR( GetMetricId( ePresUnit) ); + " " + EditResId::GetString( GetMetricId( ePresUnit) ); return true; } @@ -1983,7 +1983,7 @@ bool XLineEndWidthItem::GetPresentation { rText = GetMetricText( (long) GetValue(), eCoreUnit, ePresUnit, pIntl) + - " " + EE_RESSTR( GetMetricId( ePresUnit) ); + " " + EditResId::GetString( GetMetricId( ePresUnit) ); return true; } |