diff options
author | Gabor Kelemen <kelemeng@ubuntu.com> | 2018-04-25 23:37:39 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-04-26 11:29:46 +0200 |
commit | 73156a5073fea9e1df45aa67c6cb8efb02da1275 (patch) | |
tree | 627e642da282c027faeef6205624bc70a6d1890f /svx/source/engine3d/lathe3d.cxx | |
parent | 3a9d3f271c445641bebd057c4c91279f9b3cd7d5 (diff) |
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 <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx/source/engine3d/lathe3d.cxx')
-rw-r--r-- | svx/source/engine3d/lathe3d.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
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 <svx/strings.hrc> -#include <svdglob.hxx> +#include <svx/dialmgr.hxx> #include <tools/poly.hxx> #include <svx/svdpage.hxx> #include <svx/globl3d.hxx> @@ -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() |