diff options
author | Tor Lillqvist <tml@collabora.com> | 2015-09-20 16:45:02 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2015-09-20 16:45:02 +0300 |
commit | 16964a87c08b46c4fce0695812cbc249225fca41 (patch) | |
tree | e634ffc2f16819e4f9d3e19cfc1ef1e5812edba7 /svx | |
parent | aac58c62758e0915b3a590700abecffb4d2c25de (diff) |
WaE: loplugin:literaltoboolconversion
Change-Id: Ib7cf1a0d4033fe2807a21de2c4bbcddb079e4128
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/svdraw/textchainflow.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/svdraw/textchainflow.cxx b/svx/source/svdraw/textchainflow.cxx index 71d46494355a..fc701b20d74d 100644 --- a/svx/source/svdraw/textchainflow.cxx +++ b/svx/source/svdraw/textchainflow.cxx @@ -255,7 +255,7 @@ SdrTextObj *TextChainFlow::GetNextLink() const OutlinerParaObject *TextChainFlow::impGetOverflowingParaObject(SdrOutliner *) { // XXX: Should never be called (to be deleted) - assert(0); + assert(false); return NULL; //return mpOverflChText->CreateOverflowingParaObject(pOutliner, // mpNextLink->GetOutlinerParaObject()); |