From 73156a5073fea9e1df45aa67c6cb8efb02da1275 Mon Sep 17 00:00:00 2001 From: Gabor Kelemen Date: Wed, 25 Apr 2018 23:37:39 +0200 Subject: Drop uses of ImpGetResStr l10n method from svx This is a wrapper above SvxResId without added value Change-Id: I1b0cdad3c01e741df1032d6a13aea74d66502144 Reviewed-on: https://gerrit.libreoffice.org/53489 Tested-by: Jenkins Reviewed-by: Noel Grandin --- svx/source/engine3d/lathe3d.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'svx/source/engine3d/lathe3d.cxx') diff --git a/svx/source/engine3d/lathe3d.cxx b/svx/source/engine3d/lathe3d.cxx index 74097eb29f63..4e35be70ab0e 100644 --- a/svx/source/engine3d/lathe3d.cxx +++ b/svx/source/engine3d/lathe3d.cxx @@ -19,7 +19,7 @@ #include -#include +#include #include #include #include @@ -157,7 +157,7 @@ void E3dLatheObj::SetPolyPoly2D(const basegfx::B2DPolyPolygon& rNew) OUString E3dLatheObj::TakeObjNameSingul() const { - OUStringBuffer sName(ImpGetResStr(STR_ObjNameSingulLathe3d)); + OUStringBuffer sName(SvxResId(STR_ObjNameSingulLathe3d)); OUString aName(GetName()); if (!aName.isEmpty()) @@ -174,7 +174,7 @@ OUString E3dLatheObj::TakeObjNameSingul() const OUString E3dLatheObj::TakeObjNamePlural() const { - return ImpGetResStr(STR_ObjNamePluralLathe3d); + return SvxResId(STR_ObjNamePluralLathe3d); } bool E3dLatheObj::IsBreakObjPossible() -- cgit