summaryrefslogtreecommitdiff
path: root/svx/source/svdraw/svdview.cxx
diff options
context:
space:
mode:
authorJohnny_M <klasse@partyheld.de>2018-03-03 12:26:18 +0100
committerMichael Stahl <mstahl@redhat.com>2018-03-03 15:42:26 +0100
commit22c7c3f54dbb93f856190c561b2540064c5a767d (patch)
treee72f0346345d9b6592113bf484021e382f9acf6c /svx/source/svdraw/svdview.cxx
parentc3fe7422295e5404b1ff1453cbe7a9d6c8681f23 (diff)
Translate German variable names
Akt -> Current in svdcrtv Including a fix of an earlier comment tranlation Change-Id: I23383594bc120440793395031a787021017de2ae Reviewed-on: https://gerrit.libreoffice.org/50667 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'svx/source/svdraw/svdview.cxx')
-rw-r--r--svx/source/svdraw/svdview.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/svx/source/svdraw/svdview.cxx b/svx/source/svdraw/svdview.cxx
index ed9157389e8b..2cf33d1311f1 100644
--- a/svx/source/svdraw/svdview.cxx
+++ b/svx/source/svdraw/svdview.cxx
@@ -945,7 +945,7 @@ Pointer SdrView::GetPreferredPointer(const Point& rMousePos, const OutputDevice*
// Actions
if (IsCreateObj())
{
- return pAktCreate->GetCreatePointer();
+ return pCurrentCreate->GetCreatePointer();
}
if (mpCurrentSdrDragMethod)
{
@@ -1165,13 +1165,13 @@ OUString SdrView::GetStatusText()
aStr += STR_NOTHING;
- if (pAktCreate!=nullptr)
+ if (pCurrentCreate!=nullptr)
{
- aStr=pAktCreate->getSpecialDragComment(maDragStat);
+ aStr=pCurrentCreate->getSpecialDragComment(maDragStat);
if(aStr.isEmpty())
{
- aName = pAktCreate->TakeObjNameSingul();
+ aName = pCurrentCreate->TakeObjNameSingul();
aStr = ImpGetResStr(STR_ViewCreateObj);
}
}