From 431a028c187dcd7ee885dcf272470f435977ae2c Mon Sep 17 00:00:00 2001 From: Christian Ehrlicher Date: Fri, 10 Mar 2023 06:56:21 +0100 Subject: [PATCH] SQL/OCI: Compile with QT_NO_CAST_FROM_ASCII Don't know why this even went through the ci. Change-Id: I9f0d1cee0c600c98f5b71bdd10f8f0260e43afcf Reviewed-by: Volker Hilsheimer (cherry picked from commit cdbfaf1b65538a1cdaf4cf0def2ac7728f11c945) Reviewed-by: Qt Cherry-pick Bot --- src/plugins/sqldrivers/oci/qsql_oci.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/sqldrivers/oci/qsql_oci.cpp b/src/plugins/sqldrivers/oci/qsql_oci.cpp index 5ef9915c51b..584c895d643 100644 --- a/src/plugins/sqldrivers/oci/qsql_oci.cpp +++ b/src/plugins/sqldrivers/oci/qsql_oci.cpp @@ -141,7 +141,7 @@ QOCIDateTime::QOCIDateTime(OCIEnv *env, OCIError *err, const QDateTime &dt) const QDate date = dt.date(); const QTime time = dt.time(); // Zone in +hh:mm format - const QString timeZone = dt.toString("ttt"); + const QString timeZone = dt.toString("ttt"_L1); const OraText *tz = reinterpret_cast(timeZone.utf16()); OCIDateTimeConstruct(env, err, dateTime, date.year(), date.month(), date.day(), time.hour(), time.minute(), time.second(), time.msec() * 1000000,