diff options
author | Matteo Casalin <matteo.casalin@yahoo.com> | 2015-12-15 20:54:30 +0100 |
---|---|---|
committer | Matteo Casalin <matteo.casalin@yahoo.com> | 2015-12-27 16:51:28 +0100 |
commit | c49e160c7ca779af5b5719f4d64dfc6dad6dc2f5 (patch) | |
tree | 262fd3e316ae880eae5df22c30d1288fb0d0b06b /sw/source | |
parent | cb98c423bbdada017a687186a5c06def6cb6f7a2 (diff) |
Avoid comma operator
Change-Id: I113b3b4ac54b08b6feb0d3e1d05c534e8e3fac7b
Diffstat (limited to 'sw/source')
-rw-r--r-- | sw/source/core/unocore/unostyle.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sw/source/core/unocore/unostyle.cxx b/sw/source/core/unocore/unostyle.cxx index d7c084dfb008..390352de5350 100644 --- a/sw/source/core/unocore/unostyle.cxx +++ b/sw/source/core/unocore/unostyle.cxx @@ -227,7 +227,8 @@ namespace sw const SfxSimpleHint *pHint = dynamic_cast<const SfxSimpleHint*>( &rHint ); if(pHint && (pHint->GetId() & SFX_HINT_DYING)) { - m_pBasePool = nullptr, m_pDocShell = nullptr; + m_pBasePool = nullptr; + m_pDocShell = nullptr; EndListening(rBC); } } |