summaryrefslogtreecommitdiff
path: root/linguistic/source/misc.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-01-28 20:01:25 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-01-28 20:26:25 +0100
commiteba294468bc5a3147f4b710c91ce3e6374cc694a (patch)
tree2ddbebfc8800e4e4654be64668588e95c5596cee /linguistic/source/misc.cxx
parent4d9d22e9cda685d80cabb37f139963eeb12b6db7 (diff)
bool improvements
Change-Id: I2337b6ffd51c24a3d2de80591bf3b989b2c5936d
Diffstat (limited to 'linguistic/source/misc.cxx')
-rw-r--r--linguistic/source/misc.cxx6
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" );
}
}