diff options
author | Tor Lillqvist <tlillqvist@novell.com> | 2010-11-06 21:38:12 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@hemulen.(none)> | 2010-11-06 21:39:06 +0200 |
commit | ffa8c3c72edffbc39bb468d811b8cf335b2ee987 (patch) | |
tree | dbcaf371241dd1c42657dfc4d972736671c53bf0 | |
parent | f94a127b3be1acfafa7875ab9f907a29d19a778d (diff) |
Fix build breakage in a dbgutil-enabled buildfeature/pptx-export-ooxml11
-rw-r--r-- | dbaccess/source/core/api/RowSet.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dbaccess/source/core/api/RowSet.cxx b/dbaccess/source/core/api/RowSet.cxx index 8f6dbd2f6..6339b8df5 100644 --- a/dbaccess/source/core/api/RowSet.cxx +++ b/dbaccess/source/core/api/RowSet.cxx @@ -1665,7 +1665,7 @@ Reference< XResultSet > ORowSet::impl_prepareAndExecute_throw() catch( const SQLException& ) { SQLExceptionInfo aError( ::cppu::getCaughtException() ); - OSL_ENSURE( aError.is(), "ORowSet::impl_prepareAndExecute_throw: caught an SQLException which we cannot analyze!" ); + OSL_ENSURE( aError.isValid(), "ORowSet::impl_prepareAndExecute_throw: caught an SQLException which we cannot analyze!" ); // append information about what we were actually going to execute try |