summaryrefslogtreecommitdiff
path: root/sw/source/filter/ww8/ww8par.cxx
diff options
context:
space:
mode:
authorJohnny_M <klasse@partyheld.de>2018-02-17 14:09:19 +0100
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2018-02-18 15:21:01 +0100
commit0679691db053acaa3ca2aa633a56d108f2e5bb85 (patch)
tree1976fc4b261c51e328ec78939618a4e595aed086 /sw/source/filter/ww8/ww8par.cxx
parent61bfc53ee710f9c79ac597888a6ee9dfee165ea4 (diff)
Translate German variable names
m_xAktItemSet -> m_xCurrentItemSet m_bAktAND_fNumberAcross -> m_bCurrentAND_fNumberAcross in ww8par Change-Id: I1f78120008530b17d2eab508c8649798fc7bedea Note: Other occurrences of "Akt" will be done separately Reviewed-on: https://gerrit.libreoffice.org/49905 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Diffstat (limited to 'sw/source/filter/ww8/ww8par.cxx')
-rw-r--r--sw/source/filter/ww8/ww8par.cxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/sw/source/filter/ww8/ww8par.cxx b/sw/source/filter/ww8/ww8par.cxx
index 2d585cdd8624..70c962d48a2f 100644
--- a/sw/source/filter/ww8/ww8par.cxx
+++ b/sw/source/filter/ww8/ww8par.cxx
@@ -3946,7 +3946,7 @@ bool SwWW8ImplReader::ReadText(WW8_CP nStartCp, WW8_CP nTextLen, ManTypes nType)
m_bWasParaEnd = false;
m_nCurrentColl = 0;
- m_xAktItemSet.reset();
+ m_xCurrentItemSet.reset();
m_nCharFormat = -1;
m_bSpec = false;
m_bPgSecBreak = false;
@@ -4067,21 +4067,21 @@ bool SwWW8ImplReader::ReadText(WW8_CP nStartCp, WW8_CP nTextLen, ManTypes nType)
const SwFormatCharFormat *pSwFormatCharFormat = nullptr;
- if (m_xAktItemSet)
- pSwFormatCharFormat = &(ItemGet<SwFormatCharFormat>(*m_xAktItemSet, RES_TXTATR_CHARFMT));
+ if (m_xCurrentItemSet)
+ pSwFormatCharFormat = &(ItemGet<SwFormatCharFormat>(*m_xCurrentItemSet, RES_TXTATR_CHARFMT));
if (pSwFormatCharFormat)
pFormat = pSwFormatCharFormat->GetCharFormat();
- if (m_xAktItemSet && !pFormat)
+ if (m_xCurrentItemSet && !pFormat)
{
OUString sPrefix = "WW8Dropcap" + OUString::number(m_nDropCap++);
pNewSwCharFormat = m_rDoc.MakeCharFormat(sPrefix, m_rDoc.GetDfltCharFormat());
- m_xAktItemSet->ClearItem(RES_CHRATR_ESCAPEMENT);
- pNewSwCharFormat->SetFormatAttr(*m_xAktItemSet);
+ m_xCurrentItemSet->ClearItem(RES_CHRATR_ESCAPEMENT);
+ pNewSwCharFormat->SetFormatAttr(*m_xCurrentItemSet);
}
- m_xAktItemSet.reset();
+ m_xCurrentItemSet.reset();
m_bDropCap=false;
}
@@ -4230,7 +4230,7 @@ SwWW8ImplReader::SwWW8ImplReader(sal_uInt8 nVersionPara, SotStorage* pStorage,
, m_bVer7(false)
, m_bVer8(false)
, m_bEmbeddObj(false)
- , m_bAktAND_fNumberAcross(false)
+ , m_bCurrentAND_fNumberAcross(false)
, m_bNoLnNumYet(true)
, m_bFirstPara(true)
, m_bFirstParaOfPage(false)
@@ -6504,8 +6504,8 @@ SdrObjUserData* SwMacroInfo::Clone( SdrObject* /*pObj*/ ) const
std::unique_ptr<SfxItemSet> SwWW8ImplReader::SetAktItemSet(SfxItemSet* pItemSet)
{
- std::unique_ptr<SfxItemSet> xRet(std::move(m_xAktItemSet));
- m_xAktItemSet.reset(pItemSet);
+ std::unique_ptr<SfxItemSet> xRet(std::move(m_xCurrentItemSet));
+ m_xCurrentItemSet.reset(pItemSet);
return xRet;
}