summaryrefslogtreecommitdiff
path: root/connectivity/inc
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
commit0be46ef50ed1798ddaedb4e202b69817aaf6ac89 (patch)
treebbf5b1641ea056e5e5348bf489fd50d4a2d689e1 /connectivity/inc
parent25c8e4ee6ed69c4a5155b307049d25ef05101d5e (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.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/connectivity/inc/connectivity/sqlerror.hxx b/connectivity/inc/connectivity/sqlerror.hxx
index 2a99c16d06c1..d8ee54853a36 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!(); }
};