diff options
author | RĂ¼diger Timm <rt@openoffice.org> | 2008-08-28 05:51:07 +0000 |
---|---|---|
committer | RĂ¼diger Timm <rt@openoffice.org> | 2008-08-28 05:51:07 +0000 |
commit | 2b781a36989eae2d839a5a0d39e8c7b401d459b4 (patch) | |
tree | bc4dd778a42ded0c1d19266eaf52e69587f38fd7 /connectivity/inc | |
parent | 93f5a94ea92e6aadd81f010284c27dbf79a37de7 (diff) |
INTEGRATION: CWS dba30i_DEV300 (1.3.68); FILE MERGED
2008/08/25 11:37:47 fs 1.3.68.1: #i93053# proper implementation of is()
Diffstat (limited to 'connectivity/inc')
-rw-r--r-- | connectivity/inc/connectivity/sqlerror.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/connectivity/inc/connectivity/sqlerror.hxx b/connectivity/inc/connectivity/sqlerror.hxx index 30002c0d9c..b0f2b0050c 100644 --- a/connectivity/inc/connectivity/sqlerror.hxx +++ b/connectivity/inc/connectivity/sqlerror.hxx @@ -7,7 +7,7 @@ * OpenOffice.org - a multi-platform office productivity suite * * $RCSfile: sqlerror.hxx,v $ - * $Revision: 1.3 $ + * $Revision: 1.4 $ * * This file is part of OpenOffice.org. * @@ -89,7 +89,7 @@ namespace connectivity ParamValue( ::rtl::OUString const& val ) : base_type( val ) { } ParamValue( ParamValue const& rhs ) : base_type( (base_type const&)rhs ) { } - bool is() const { return base_type::get() != NULL; } + bool is() const { return !base_type::operator!(); } }; |