summaryrefslogtreecommitdiff
path: root/lotuswordpro
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-12-15 13:36:59 +0100
committerAndras Timar <andras.timar@collabora.com>2015-12-21 13:16:03 +0100
commit0980af966ad83ba7d68c20d776d7d1998c3e2465 (patch)
treeb9cd40c2759b9c802ece658fac403573fd89089b /lotuswordpro
parent1bdffc782838b4b0e2e0e5c619f9bf14f18596f5 (diff)
loplugin:implicitboolconversion
Change-Id: I3bd1222642ab3e8d24bf0f5cca897c2ce638757a (cherry picked from commit fd433a12691649604bd67732ad08e892ba47f23a) (cherry picked from commit 485821dea88ff086b9b4d7622c4fd66433eb50e4)
Diffstat (limited to 'lotuswordpro')
-rw-r--r--lotuswordpro/source/filter/lwplayout.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/lotuswordpro/source/filter/lwplayout.hxx b/lotuswordpro/source/filter/lwplayout.hxx
index c8bcaa317967..749513bc7b23 100644
--- a/lotuswordpro/source/filter/lwplayout.hxx
+++ b/lotuswordpro/source/filter/lwplayout.hxx
@@ -146,7 +146,7 @@ public:
if (m_bGettingMarginsValue)
throw std::runtime_error("recursion in layout");
m_bGettingMarginsValue = true;
- bool fRet = MarginsValue(nWhichSide);
+ auto fRet = MarginsValue(nWhichSide);
m_bGettingMarginsValue = false;
return fRet;
}