diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2020-06-26 08:38:26 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-06-26 10:45:25 +0200 |
commit | 7d71d2c35b7b3e4da6f92a7b09cb010195b2519e (patch) | |
tree | f586c5ad5da2329c4a7428f41f9c9542fbb5bd25 /connectivity | |
parent | 74efa49fb31b648ff5ad454215fff2056e788917 (diff) |
Upcoming improved loplugin:elidestringvar: connectivity
Change-Id: I50676f940abb36091e175d7469806e8ccc6ba7b5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/97195
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'connectivity')
-rw-r--r-- | connectivity/source/drivers/firebird/DatabaseMetaData.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/connectivity/source/drivers/firebird/DatabaseMetaData.cxx b/connectivity/source/drivers/firebird/DatabaseMetaData.cxx index 3823e7874f34..62a22454fc60 100644 --- a/connectivity/source/drivers/firebird/DatabaseMetaData.cxx +++ b/connectivity/source/drivers/firebird/DatabaseMetaData.cxx @@ -221,8 +221,7 @@ sal_Bool SAL_CALL ODatabaseMetaData::doesMaxRowSizeIncludeBlobs( ) // Only quoted identifiers are case sensitive, unquoted are case insensitive OUString SAL_CALL ODatabaseMetaData::getIdentifierQuoteString() { - OUString aVal('"'); - return aVal; + return "\""; } sal_Bool SAL_CALL ODatabaseMetaData::supportsMixedCaseQuotedIdentifiers( ) |