diff options
author | Andreas Bille <abi@openoffice.org> | 2001-11-23 15:51:01 +0000 |
---|---|---|
committer | Andreas Bille <abi@openoffice.org> | 2001-11-23 15:51:01 +0000 |
commit | 6caff0a605efddfbe54486ef22caf79b8711540d (patch) | |
tree | db438280ebefd147b606e3c1cb0699d2b3706695 /xmlhelp/source | |
parent | ec0a36a65f36d0a3a3367aef9ff0f8d86640ad7b (diff) |
#94953# Explicit casting int to bool
Diffstat (limited to 'xmlhelp/source')
-rw-r--r-- | xmlhelp/source/cxxhelp/provider/databases.cxx | 6 |
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; } |