summaryrefslogtreecommitdiff
path: root/connectivity
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity')
-rw-r--r--connectivity/source/drivers/firebird/PreparedStatement.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/connectivity/source/drivers/firebird/PreparedStatement.cxx b/connectivity/source/drivers/firebird/PreparedStatement.cxx
index f9adc0bdb0fc..2802be6e0c7b 100644
--- a/connectivity/source/drivers/firebird/PreparedStatement.cxx
+++ b/connectivity/source/drivers/firebird/PreparedStatement.cxx
@@ -323,7 +323,7 @@ sal_Int64 OPreparedStatement::toNumericWithoutDecimalPlace(const OUString& sSour
OUString sNumber(sSource);
// cut off leading 0 eventually ( eg. 0.567 -> .567)
- sSource.startsWith(OUString("0"), &sNumber);
+ sSource.startsWith("0", &sNumber);
sal_Int32 nDotIndex = sNumber.indexOf((sal_Unicode)'.');