diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-01-28 20:01:25 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-01-28 20:26:25 +0100 |
commit | eba294468bc5a3147f4b710c91ce3e6374cc694a (patch) | |
tree | 2ddbebfc8800e4e4654be64668588e95c5596cee /linguistic/source/misc.cxx | |
parent | 4d9d22e9cda685d80cabb37f139963eeb12b6db7 (diff) |
bool improvements
Change-Id: I2337b6ffd51c24a3d2de80591bf3b989b2c5936d
Diffstat (limited to 'linguistic/source/misc.cxx')
-rw-r--r-- | linguistic/source/misc.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/linguistic/source/misc.cxx b/linguistic/source/misc.cxx index 53f95b3d873f..6ed0510d241c 100644 --- a/linguistic/source/misc.cxx +++ b/linguistic/source/misc.cxx @@ -569,7 +569,7 @@ uno::Reference< XHyphenatedWord > RebuildHyphensAndControlChars( if (nOrigHyphenPos == -1 || nOrigHyphenationPos == -1) { - DBG_ASSERT( 0, "failed to get nOrigHyphenPos or nOrigHyphenationPos" ); + DBG_ASSERT( false, "failed to get nOrigHyphenPos or nOrigHyphenationPos" ); } else { @@ -736,7 +736,7 @@ uno::Reference< XSearchableDictionaryList > GetDictionaryList() } catch (const uno::Exception &) { - DBG_ASSERT( 0, "createInstance failed" ); + DBG_ASSERT( false, "createInstance failed" ); } return xRef; @@ -763,7 +763,7 @@ AppExitListener::AppExitListener() } catch (const uno::Exception &) { - DBG_ASSERT( 0, "createInstance failed" ); + DBG_ASSERT( false, "createInstance failed" ); } } |