| commit | d021827a277c08053d11b7319f9b6180b4988684 | [log] |
|---|---|---|
| author | Caolán McNamara <caolanm@redhat.com> | Wed Feb 12 17:29:42 2020 +0000 |
| committer | Adolfo Jayme Barrientos <fitojb@ubuntu.com> | Fri Feb 14 02:26:19 2020 +0100 |
| tree | 77e7885866039aa03cd4c0f78cfae41fac2594c7 | |
| parent | e4e8e8038b06adef9e0abc743b7cc85cc39279cd [diff] |
Resolves: tdf#130593 set correct range for spinbutton Change-Id: I6691f2709aa4053798fcc1744f9f41c3c3866a33 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88496 Tested-by: Jenkins Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
diff --git a/dbaccess/source/ui/control/FieldDescControl.cxx b/dbaccess/source/ui/control/FieldDescControl.cxx index 5d9d908..c7f5f01 100644 --- a/dbaccess/source/ui/control/FieldDescControl.cxx +++ b/dbaccess/source/ui/control/FieldDescControl.cxx
@@ -783,8 +783,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