summaryrefslogtreecommitdiff
path: root/connectivity
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2008-08-28 05:51:07 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2008-08-28 05:51:07 +0000
commit2b781a36989eae2d839a5a0d39e8c7b401d459b4 (patch)
treebc4dd778a42ded0c1d19266eaf52e69587f38fd7 /connectivity
parent93f5a94ea92e6aadd81f010284c27dbf79a37de7 (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')
-rw-r--r--connectivity/inc/connectivity/sqlerror.hxx4
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!(); }
};