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/sphere3d.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/sphere3d.cxx')
-rw-r--r-- | svx/source/engine3d/sphere3d.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/engine3d/sphere3d.cxx b/svx/source/engine3d/sphere3d.cxx index 75670c2e28d7..af07d916ac4a 100644 --- a/svx/source/engine3d/sphere3d.cxx +++ b/svx/source/engine3d/sphere3d.cxx @@ -19,7 +19,7 @@ #include <svx/strings.hrc> -#include <svdglob.hxx> +#include <svx/dialmgr.hxx> #include <svx/svdmodel.hxx> #include <svx/svdpage.hxx> #include <svx/globl3d.hxx> @@ -128,7 +128,7 @@ void E3dSphereObj::SetSize(const basegfx::B3DVector& rNew) OUString E3dSphereObj::TakeObjNameSingul() const { - OUStringBuffer sName(ImpGetResStr(STR_ObjNameSingulSphere3d)); + OUStringBuffer sName(SvxResId(STR_ObjNameSingulSphere3d)); OUString aName(GetName()); if (!aName.isEmpty()) @@ -145,7 +145,7 @@ OUString E3dSphereObj::TakeObjNameSingul() const OUString E3dSphereObj::TakeObjNamePlural() const { - return ImpGetResStr(STR_ObjNamePluralSphere3d); + return SvxResId(STR_ObjNamePluralSphere3d); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |