diff options
author | Oliver Bolte <obo@openoffice.org> | 2006-10-12 10:27:55 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2006-10-12 10:27:55 +0000 |
commit | 68081aa66e2f998fbd5b0581968a50160d6e13af (patch) | |
tree | 6b8c438bfb3cad5fca97fd44c3ace0d40c9f1e5d /xmlhelp | |
parent | 4a9860f4df463c788082a6281868aad86b01655a (diff) |
INTEGRATION: CWS sb59 (1.12.12); FILE MERGED
2006/08/30 11:10:27 sb 1.12.12.1: #i67487# Made code warning-free (wntmsci10).
Diffstat (limited to 'xmlhelp')
-rw-r--r-- | xmlhelp/source/cxxhelp/provider/resultsetforquery.cxx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/xmlhelp/source/cxxhelp/provider/resultsetforquery.cxx b/xmlhelp/source/cxxhelp/provider/resultsetforquery.cxx index f9c49efc83a2..c617a5b42b5c 100644 --- a/xmlhelp/source/cxxhelp/provider/resultsetforquery.cxx +++ b/xmlhelp/source/cxxhelp/provider/resultsetforquery.cxx @@ -4,9 +4,9 @@ * * $RCSfile: resultsetforquery.cxx,v $ * - * $Revision: 1.13 $ + * $Revision: 1.14 $ * - * last change: $Author: obo $ $Date: 2006-09-17 01:17:54 $ + * last change: $Author: obo $ $Date: 2006-10-12 11:27:55 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -224,8 +224,7 @@ ResultSetForQuery::ResultSetForQuery( const uno::Reference< lang::XMultiServiceF if( content.is() ) { uno::Reference< XCommandProcessor > cmd( content,uno::UNO_QUERY ); - if( ! ( cmd->execute( aCommand,0,uno::Reference< XCommandEnvironment >( 0 ) ) >>= m_aItems[m_nRow] ) ) - ; + cmd->execute( aCommand,0,uno::Reference< XCommandEnvironment >( 0 ) ) >>= m_aItems[m_nRow]; //TODO: check return value of operator >>= } } m_nRow = 0xffffffff; |