summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter/lwpchangemgr.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'lotuswordpro/source/filter/lwpchangemgr.cxx')
-rw-r--r--lotuswordpro/source/filter/lwpchangemgr.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/lotuswordpro/source/filter/lwpchangemgr.cxx b/lotuswordpro/source/filter/lwpchangemgr.cxx
index 9fbfc1906201..f24c1ddf72cb 100644
--- a/lotuswordpro/source/filter/lwpchangemgr.cxx
+++ b/lotuswordpro/source/filter/lwpchangemgr.cxx
@@ -92,7 +92,7 @@ LwpChangeMgr::LwpChangeMgr()
LwpChangeMgr::~LwpChangeMgr()
{
- m_pFribMap=nullptr;
+ m_pFribMap = nullptr;
m_DocFribMap.clear();
m_HeadFootFribMap.clear();
m_ChangeList.clear();
@@ -101,8 +101,8 @@ LwpChangeMgr::~LwpChangeMgr()
void LwpChangeMgr::AddChangeFrib(LwpFrib* pFrib)
{
m_nCounter++;
- OUString sID = "ct"+ OUString::number(m_nCounter);
- m_pFribMap->insert(std::pair<LwpFrib*,OUString>(pFrib,sID));
+ OUString sID = "ct" + OUString::number(m_nCounter);
+ m_pFribMap->insert(std::pair<LwpFrib*, OUString>(pFrib, sID));
pFrib->Register(m_pFribMap);
}
@@ -137,10 +137,10 @@ void LwpChangeMgr::ConvertAllChange(IXFStream* pStream)
pStream->GetAttrList()->Clear();
if (m_ChangeList.empty())
- return;
+ return;
// Add for disable change tracking
- pStream->GetAttrList()->AddAttribute( "text:track-changes","false");
- pStream->StartElement( "text:tracked-changes" );
+ pStream->GetAttrList()->AddAttribute("text:track-changes", "false");
+ pStream->StartElement("text:tracked-changes");
for (auto const& elem : m_ChangeList)
elem->ToXml(pStream);