summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/connectivity/sqlerror.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/connectivity/sqlerror.hxx b/include/connectivity/sqlerror.hxx
index be1112bda46f..9b4c60c49476 100644
--- a/include/connectivity/sqlerror.hxx
+++ b/include/connectivity/sqlerror.hxx
@@ -72,7 +72,7 @@ namespace connectivity
ParamValue( OUString const& val ) : base_type( val ) { }
ParamValue( ParamValue const& rhs ) : base_type( static_cast<base_type const&>( rhs ) ) { }
- bool is() const { return !base_type::operator!(); }
+ bool is() const { return bool(*this); }
};