summaryrefslogtreecommitdiff
path: root/xmlhelp
diff options
context:
space:
mode:
authorAndreas Bille <abi@openoffice.org>2001-11-23 15:51:01 +0000
committerAndreas Bille <abi@openoffice.org>2001-11-23 15:51:01 +0000
commit6caff0a605efddfbe54486ef22caf79b8711540d (patch)
treedb438280ebefd147b606e3c1cb0699d2b3706695 /xmlhelp
parentec0a36a65f36d0a3a3367aef9ff0f8d86640ad7b (diff)
#94953# Explicit casting int to bool
Diffstat (limited to 'xmlhelp')
-rw-r--r--xmlhelp/source/cxxhelp/provider/databases.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/xmlhelp/source/cxxhelp/provider/databases.cxx b/xmlhelp/source/cxxhelp/provider/databases.cxx
index c6b2a57dc9ec..ab9bae8c47be 100644
--- a/xmlhelp/source/cxxhelp/provider/databases.cxx
+++ b/xmlhelp/source/cxxhelp/provider/databases.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: databases.cxx,v $
*
- * $Revision: 1.30 $
+ * $Revision: 1.31 $
*
- * last change: $Author: abi $ $Date: 2001-11-23 16:15:51 $
+ * last change: $Author: abi $ $Date: 2001-11-23 16:51:01 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -577,7 +577,7 @@ namespace chelp {
ret = true;
}
else
- ret = l < r;
+ ret = bool( l < r );
return ret;
}