summaryrefslogtreecommitdiff
path: root/svx/source
diff options
context:
space:
mode:
authorJohnny_M <klasse@partyheld.de>2018-03-10 12:01:22 +0100
committerMichael Stahl <mstahl@redhat.com>2018-03-13 13:05:29 +0100
commit83e5f4db3b42f5fce16dc1e0ce723a45329dab0f (patch)
tree3ed08149815b82c9704ce0e01f50f99fb774d0e1 /svx/source
parent886efb9577c6661581033e994819990026affe86 (diff)
Translate German variable names
Akt -> Current in svdibrow Change-Id: I3a3a87fdba179ad927226097c53c4f07d36095e8 Reviewed-on: https://gerrit.libreoffice.org/51033 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'svx/source')
-rw-r--r--svx/source/svdraw/svdibrow.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/svx/source/svdraw/svdibrow.cxx b/svx/source/svdraw/svdibrow.cxx
index 7f98fbc746ae..fc7c0c560658 100644
--- a/svx/source/svdraw/svdibrow.cxx
+++ b/svx/source/svdraw/svdibrow.cxx
@@ -536,19 +536,19 @@ void SdrItemBrowserControl::ImpSetEntry(const ImpItemListRow& rEntry, std::size_
aList.emplace_back(new ImpItemListRow(rEntry));
RowInserted(nEntryNum);
} else {
- auto& pAktEntry=aList[nEntryNum];
- if (*pAktEntry!=rEntry) {
- bool bStateDiff=rEntry.eState!=pAktEntry->eState;
- bool bValueDiff=rEntry.aValue != pAktEntry->aValue;
+ auto& pCurrentEntry=aList[nEntryNum];
+ if (*pCurrentEntry!=rEntry) {
+ bool bStateDiff=rEntry.eState!=pCurrentEntry->eState;
+ bool bValueDiff=rEntry.aValue != pCurrentEntry->aValue;
bool bAllDiff = true;
if (bStateDiff || bValueDiff) {
// check whether only state and/or value have changed
ImpItemListRow aTest(rEntry);
- aTest.eState=pAktEntry->eState;
- aTest.aValue=pAktEntry->aValue;
- if (aTest==*pAktEntry) bAllDiff = false;
+ aTest.eState=pCurrentEntry->eState;
+ aTest.aValue=pCurrentEntry->aValue;
+ if (aTest==*pCurrentEntry) bAllDiff = false;
}
- *pAktEntry=rEntry;
+ *pCurrentEntry=rEntry;
if (bAllDiff) {
RowModified(nEntryNum);
} else {