diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-11-10 10:12:07 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-11-10 10:31:20 +0100 |
commit | c0bd59c15b4a6e8523693c8a354456b9fadb8832 (patch) | |
tree | 67a35c16019355b6eac3faff74ce63d44eddfa96 /include/connectivity/dbexception.hxx | |
parent | 047239d5ca229bb8ad85a2d9fcd2ae7b6f35b976 (diff) |
loplugin:nullptr (automatic rewrite)
Change-Id: Iefeeb51c2b101c097a8d77a4625f84baf1f2da44
Diffstat (limited to 'include/connectivity/dbexception.hxx')
-rw-r--r-- | include/connectivity/dbexception.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/connectivity/dbexception.hxx b/include/connectivity/dbexception.hxx index 69c3a0f1e347..6e7cb972e16b 100644 --- a/include/connectivity/dbexception.hxx +++ b/include/connectivity/dbexception.hxx @@ -177,7 +177,7 @@ public: /** determines whether there are more elements in the exception chain */ - bool hasMoreElements() const { return ( m_pCurrent != NULL ); } + bool hasMoreElements() const { return ( m_pCurrent != nullptr ); } /** retrieves the current element in the chain, or <NULL/> if the chain has been completely traveled. @@ -284,7 +284,7 @@ OOO_DLLPUBLIC_DBTOOLS void throwGenericSQLException( OOO_DLLPUBLIC_DBTOOLS void throwFeatureNotImplementedSQLException( const OUString& _rFeatureName, const css::uno::Reference< css::uno::XInterface >& _rxContext, - const css::uno::Any* _pNextException = NULL + const css::uno::Any* _pNextException = nullptr ) throw (css::sdbc::SQLException); @@ -323,7 +323,7 @@ OOO_DLLPUBLIC_DBTOOLS void throwSQLException( const OUString& _rSQLState, const css::uno::Reference< css::uno::XInterface >& _rxContext, const sal_Int32 _nErrorCode = 0, - const css::uno::Any* _pNextException = NULL + const css::uno::Any* _pNextException = nullptr ) throw (css::sdbc::SQLException); @@ -335,7 +335,7 @@ OOO_DLLPUBLIC_DBTOOLS void throwSQLException( StandardSQLState _eSQLState, const css::uno::Reference< css::uno::XInterface >& _rxContext, const sal_Int32 _nErrorCode = 0, - const css::uno::Any* _pNextException = NULL + const css::uno::Any* _pNextException = nullptr ) throw (css::sdbc::SQLException); |