| commit | 4a3bb10b2f81ad836d6b9d9bd2f0384914a19cb5 | [log] |
|---|---|---|
| author | Caolán McNamara <caolanm@redhat.com> | Wed Feb 12 17:29:42 2020 +0000 |
| committer | Caolán McNamara <caolanm@redhat.com> | Thu Feb 13 09:49:39 2020 +0100 |
| tree | d90a2aca5efbe57d2013c1cc5a3d812bea40eaeb | |
| parent | 9733174ea00e525c91b4edf1bbc6ab4897f5fbf8 [diff] |
Resolves: tdf#130593 set correct range for spinbutton Change-Id: I6691f2709aa4053798fcc1744f9f41c3c3866a33 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88554 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
diff --git a/dbaccess/source/ui/control/FieldDescControl.cxx b/dbaccess/source/ui/control/FieldDescControl.cxx index 71bd199..c40558e 100644 --- a/dbaccess/source/ui/control/FieldDescControl.cxx +++ b/dbaccess/source/ui/control/FieldDescControl.cxx
@@ -782,8 +782,8 @@ void OFieldDescControl::DisplayData(OFieldDescription* pFieldDescr ) if (pFieldType->nMaximumScale) { ActivateAggregate( tpScale ); m_xScale->set_range(std::max<sal_Int32>(pFieldType->nMaximumScale,pFieldDescr->GetScale()), pFieldType->nMinimumScale); m_xScale->set_range(pFieldType->nMinimumScale, std::max<sal_Int32>(pFieldType->nMaximumScale,pFieldDescr->GetScale())); m_xScale->set_editable(!pFieldType->aCreateParams.isEmpty() && pFieldType->aCreateParams != "PRECISION"); } else