summaryrefslogtreecommitdiff
path: root/sc/source/ui/view/drawview.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/ui/view/drawview.cxx')
-rw-r--r--sc/source/ui/view/drawview.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/sc/source/ui/view/drawview.cxx b/sc/source/ui/view/drawview.cxx
index 842abcddaf54..d688b8a13ca5 100644
--- a/sc/source/ui/view/drawview.cxx
+++ b/sc/source/ui/view/drawview.cxx
@@ -46,6 +46,7 @@
#include <drawutil.hxx>
#include <futext.hxx>
#include <globstr.hrc>
+#include <scresid.hxx>
#include <tabvwsh.hxx>
#include <client.hxx>
#include <scmod.hxx>
@@ -214,7 +215,7 @@ void ScDrawView::SetMarkedToLayer( SdrLayerID nLayerNo )
{
// #i11702# use SdrUndoObjectLayerChange for undo
// STR_UNDO_SELATTR is "Attributes" - should use a different text later
- BegUndo( ScGlobal::GetRscString( STR_UNDO_SELATTR ) );
+ BegUndo( ScResId( STR_UNDO_SELATTR ) );
const SdrMarkList& rMark = GetMarkedObjectList();
const size_t nCount = rMark.GetMarkCount();
@@ -283,7 +284,7 @@ void ScDrawView::UpdateWorkArea()
void ScDrawView::DoCut()
{
DoCopy();
- BegUndo( ScGlobal::GetRscString( STR_UNDO_CUT ) );
+ BegUndo( ScResId( STR_UNDO_CUT ) );
DeleteMarked(); // In this View - not affected by 505f change
EndUndo();
}