diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-11-10 10:13:39 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-11-10 10:31:22 +0100 |
commit | 89c4edc13f203db1641c63e22774262bbe61f36f (patch) | |
tree | 0aa28439045c19140ff51cd6cf1593d8cf515d89 /dbaccess/source/sdbtools | |
parent | b58d56c5109f4cf6cacfc8e9c424b179a65bf1f1 (diff) |
loplugin:nullptr (automatic rewrite)
Change-Id: I2bba104b1bff30910864e45b5b032533099742ff
Diffstat (limited to 'dbaccess/source/sdbtools')
-rw-r--r-- | dbaccess/source/sdbtools/connection/objectnames.cxx | 6 | ||||
-rw-r--r-- | dbaccess/source/sdbtools/connection/tablename.cxx | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/dbaccess/source/sdbtools/connection/objectnames.cxx b/dbaccess/source/sdbtools/connection/objectnames.cxx index 5edf3890e326..a0f08669ce83 100644 --- a/dbaccess/source/sdbtools/connection/objectnames.cxx +++ b/dbaccess/source/sdbtools/connection/objectnames.cxx @@ -293,7 +293,7 @@ namespace sdbtools ) throw IllegalArgumentException( OUString( SdbtRes( STR_INVALID_COMMAND_TYPE ) ), - NULL, + nullptr, 0 ); } @@ -316,7 +316,7 @@ namespace sdbtools { throw IllegalArgumentException( OUString( SdbtRes( STR_CONN_WITHOUT_QUERIES_OR_TABLES ) ), - NULL, + nullptr, 0 ); } @@ -347,7 +347,7 @@ namespace sdbtools { throw IllegalArgumentException( "The connection could not provide its database's meta data.", - NULL, + nullptr, 0 ); } diff --git a/dbaccess/source/sdbtools/connection/tablename.cxx b/dbaccess/source/sdbtools/connection/tablename.cxx index 64cce68c4fbc..a64a9f922e38 100644 --- a/dbaccess/source/sdbtools/connection/tablename.cxx +++ b/dbaccess/source/sdbtools/connection/tablename.cxx @@ -202,7 +202,7 @@ namespace sdbtools if ( !found ) throw IllegalArgumentException( OUString( SdbtRes( STR_INVALID_COMPOSITION_TYPE ) ), - NULL, + nullptr, 0 ); |