summaryrefslogtreecommitdiffstats
path: root/forms
diff options
context:
space:
mode:
authorFrank Schoenheit [fs] <frank.schoenheit@oracle.com>2010-11-23 21:55:13 +0100
committerFrank Schoenheit [fs] <frank.schoenheit@oracle.com>2010-11-23 21:55:13 +0100
commit6a7bbc11c1039e78ca10849bcad6c1c389a6e3b9 (patch)
tree9a6f8ab55f007303e906775ac3fd12824d96b041 /forms
parentdba34b: merge after pulling DEV300.m94 (diff)
downloadcore-6a7bbc11c1039e78ca10849bcad6c1c389a6e3b9.tar.gz
core-6a7bbc11c1039e78ca10849bcad6c1c389a6e3b9.zip
dba34b: #i115250# DBTypeConversion::getValue: do not use the target format to determine how to obtain the column value, instead, use the column type
Diffstat (limited to 'forms')
-rw-r--r--forms/source/component/FormattedField.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/forms/source/component/FormattedField.cxx b/forms/source/component/FormattedField.cxx
index a35a300dda78..697b39d4931e 100644
--- a/forms/source/component/FormattedField.cxx
+++ b/forms/source/component/FormattedField.cxx
@@ -1199,7 +1199,7 @@ Any OFormattedModel::translateControlValueToExternalValue( ) const
Any OFormattedModel::translateDbColumnToControlValue()
{
if ( m_bNumeric )
- m_aSaveValue <<= DBTypeConversion::getValue( m_xColumn, m_aNullDate, m_nKeyType ); // #100056# OJ
+ m_aSaveValue <<= DBTypeConversion::getValue( m_xColumn, m_aNullDate ); // #100056# OJ
else
m_aSaveValue <<= m_xColumn->getString();