summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Bergmann <stephan.bergmann@allotropia.de>2023-11-29 19:38:25 +0100
committerStephan Bergmann <stephan.bergmann@allotropia.de>2023-11-29 22:58:41 +0100
commit02fd70fb1c9578351919d82100047c03be97934c (patch)
tree7fad6ff362e1ab573d9f512bdf90ce9271e76200
parent83a5eedb7010c236267fcca5cfac4978b9900801 (diff)
Extended loplugin:ostr: connectivity
Change-Id: Ibbfb8945754713721c4e9ab9d8015c111c1307be Reviewed-on: https://gerrit.libreoffice.org/c/core/+/160125 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <stephan.bergmann@allotropia.de>
-rw-r--r--connectivity/source/drivers/firebird/Connection.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/connectivity/source/drivers/firebird/Connection.cxx b/connectivity/source/drivers/firebird/Connection.cxx
index 8dc567b23233..d0008272e17f 100644
--- a/connectivity/source/drivers/firebird/Connection.cxx
+++ b/connectivity/source/drivers/firebird/Connection.cxx
@@ -233,8 +233,8 @@ void Connection::construct(const OUString& url, const Sequence< PropertyValue >&
if (m_bIsEmbedded || m_bIsFile)
{
- userName = "sysdba";
- userPassword = "masterkey";
+ userName = "sysdba"_ostr;
+ userPassword = "masterkey"_ostr;
}
else
{