Kaydet (Commit) 19a798d7 authored tarafından Caolán McNamara's avatar Caolán McNamara Kaydeden (comit) Xisco Faulí

Resolves: tdf#124111 Cannot enter negative number

Change-Id: I9b08595f5dc7ca0bd3e86891330dd1caa0446e63
Reviewed-on: https://gerrit.libreoffice.org/69419
Tested-by: Jenkins
Reviewed-by: 's avatarXisco Faulí <xiscofauli@libreoffice.org>
üst 94fab684
...@@ -62,6 +62,11 @@ AxisPositionsTabPage::AxisPositionsTabPage(TabPageParent pWindow,const SfxItemSe ...@@ -62,6 +62,11 @@ AxisPositionsTabPage::AxisPositionsTabPage(TabPageParent pWindow,const SfxItemSe
{ {
m_xLB_CrossesAt->connect_changed(LINK(this, AxisPositionsTabPage, CrossesAtSelectHdl)); m_xLB_CrossesAt->connect_changed(LINK(this, AxisPositionsTabPage, CrossesAtSelectHdl));
m_xLB_PlaceLabels->connect_changed(LINK(this, AxisPositionsTabPage, PlaceLabelsSelectHdl)); m_xLB_PlaceLabels->connect_changed(LINK(this, AxisPositionsTabPage, PlaceLabelsSelectHdl));
const double nMin = static_cast<double>(SAL_MIN_INT64);
const double nMax = static_cast<double>(SAL_MAX_INT64);
m_xED_CrossesAt->set_range(nMin, nMax);
m_xED_LabelDistance->set_range(nMin, nMax);
} }
AxisPositionsTabPage::~AxisPositionsTabPage() AxisPositionsTabPage::~AxisPositionsTabPage()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment