summaryrefslogtreecommitdiff
path: root/forms
diff options
context:
space:
mode:
Diffstat (limited to 'forms')
-rw-r--r--forms/source/component/Filter.cxx4
-rw-r--r--forms/source/component/FormattedField.cxx2
2 files changed, 3 insertions, 3 deletions
diff --git a/forms/source/component/Filter.cxx b/forms/source/component/Filter.cxx
index 5117ec3c231e..23d444343d1e 100644
--- a/forms/source/component/Filter.cxx
+++ b/forms/source/component/Filter.cxx
@@ -124,7 +124,7 @@ namespace frm
{
// we can create one from the connection, if it's an SDB connection
- Reference< XNumberFormatsSupplier > xFormatSupplier = ::dbtools::getNumberFormats( m_xConnection, sal_True, m_xContext );
+ Reference< XNumberFormatsSupplier > xFormatSupplier = ::dbtools::getNumberFormats( m_xConnection, true, m_xContext );
if ( xFormatSupplier.is() )
{
@@ -302,7 +302,7 @@ namespace frm
bool bSelected = ( rEvent.Selected == TRISTATE_TRUE );
OUString sExpressionMarker( "$expression$" );
- ::dbtools::getBoleanComparisonPredicate(
+ ::dbtools::getBooleanComparisonPredicate(
sExpressionMarker,
bSelected,
nBooleanComparisonMode,
diff --git a/forms/source/component/FormattedField.cxx b/forms/source/component/FormattedField.cxx
index 289fc3d418a1..f39db452873e 100644
--- a/forms/source/component/FormattedField.cxx
+++ b/forms/source/component/FormattedField.cxx
@@ -529,7 +529,7 @@ Reference<XNumberFormatsSupplier> OFormattedModel::calcFormFormatsSupplier() co
Reference< XRowSet > xRowSet( xNextParentForm, UNO_QUERY );
Reference< XNumberFormatsSupplier > xSupplier;
if (xRowSet.is())
- xSupplier = getNumberFormats( getConnection(xRowSet), sal_True, getContext() );
+ xSupplier = getNumberFormats( getConnection(xRowSet), true, getContext() );
return xSupplier;
}