diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2019-10-08 20:43:03 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2019-10-09 14:09:22 +0200 |
commit | 8e0c45246a3de75d84875500ce3485e1ded4b934 (patch) | |
tree | a35ef3841aa5759efea866800738420697a8eb60 /include/connectivity | |
parent | 728de28b8b7f334fd2102e132539a059d6a0a66f (diff) |
Resolve FIXME Decimal Separator should be OUString (connectivity/dbaccess/svx)
instead of a sal_Char
Change-Id: I14fd983dac7ceb83a788c26dd4ea9d1c87444c9a
Reviewed-on: https://gerrit.libreoffice.org/80493
Tested-by: Jenkins
Reviewed-by: Lionel Elie Mamane <lionel@mamane.lu>
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'include/connectivity')
-rw-r--r-- | include/connectivity/sqlnode.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/connectivity/sqlnode.hxx b/include/connectivity/sqlnode.hxx index fe90a29283c4..61c9ff5efc3b 100644 --- a/include/connectivity/sqlnode.hxx +++ b/include/connectivity/sqlnode.hxx @@ -82,7 +82,7 @@ namespace connectivity OUString sPredicateTableAlias; css::uno::Reference< css::container::XNameAccess > xQueries; // see bParseToSDBCLevel const IParseContext& m_rContext; - sal_Char cDecSep; + OUString sDecSep; bool bQuote : 1; /// should we quote identifiers? bool bInternational : 1; /// should we internationalize keywords and placeholders? bool bPredicate : 1; /// are we going to parse a mere predicate? @@ -97,7 +97,7 @@ namespace connectivity const IParseContext* _pContext, bool _bIntl, bool _bQuote, - sal_Char _cDecSep, + OUString _sDecSep, bool _bPredicate, bool _bParseToSDBC ); @@ -321,7 +321,7 @@ namespace connectivity const css::uno::Reference< css::sdbc::XConnection >& _rxConnection, const css::uno::Reference< css::util::XNumberFormatter > & xFormatter, const css::lang::Locale& rIntl, - sal_Char _cDec, + OUString _sDec, const IParseContext* pContext = nullptr ) const; void parseNodeToPredicateStr(OUString& rString, @@ -330,7 +330,7 @@ namespace connectivity const css::uno::Reference< css::beans::XPropertySet > & _xField, const OUString &_sTableAlias, const css::lang::Locale& rIntl, - sal_Char _cDec, + OUString strDec, const IParseContext* pContext = nullptr ) const; OSQLParseNode* getByRule(OSQLParseNode::Rule eRule) const; @@ -413,7 +413,7 @@ namespace connectivity const IParseContext* pContext, bool _bIntl, bool _bQuote, - sal_Char _cDecSep, + OUString _sDecSep, bool _bPredicate) const; private: |