summaryrefslogtreecommitdiff
path: root/svx/source/svdraw/svdmodel.cxx
diff options
context:
space:
mode:
authorGabor Kelemen <kelemeng@ubuntu.com>2018-04-25 23:37:39 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-04-26 11:29:46 +0200
commit73156a5073fea9e1df45aa67c6cb8efb02da1275 (patch)
tree627e642da282c027faeef6205624bc70a6d1890f /svx/source/svdraw/svdmodel.cxx
parent3a9d3f271c445641bebd057c4c91279f9b3cd7d5 (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/svdraw/svdmodel.cxx')
-rw-r--r--svx/source/svdraw/svdmodel.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/svdraw/svdmodel.cxx b/svx/source/svdraw/svdmodel.cxx
index 531a1a4cc98e..ccb3e52d3416 100644
--- a/svx/source/svdraw/svdmodel.cxx
+++ b/svx/source/svdraw/svdmodel.cxx
@@ -61,7 +61,7 @@
#include <svx/svdetc.hxx>
#include <svx/svdoutl.hxx>
#include <svx/svdoole2.hxx>
-#include <svdglob.hxx>
+#include <svx/dialmgr.hxx>
#include <svx/strings.hrc>
#include <svdoutlinercache.hxx>
@@ -1439,7 +1439,7 @@ void SdrModel::CopyPages(sal_uInt16 nFirstPageNum, sal_uInt16 nLastPageNum,
bUndo = false;
if( bUndo )
- BegUndo(ImpGetResStr(STR_UndoMergeModel));
+ BegUndo(SvxResId(STR_UndoMergeModel));
sal_uInt16 nPageCnt=GetPageCount();
sal_uInt16 nMaxPage=nPageCnt;
@@ -1527,7 +1527,7 @@ void SdrModel::Merge(SdrModel& rSourceModel,
bUndo = false;
if (bUndo)
- BegUndo(ImpGetResStr(STR_UndoMergeModel));
+ BegUndo(SvxResId(STR_UndoMergeModel));
sal_uInt16 nSrcPageCnt=rSourceModel.GetPageCount();
sal_uInt16 nSrcMasterPageCnt=rSourceModel.GetMasterPageCount();