Home
last modified time | relevance | path

Searched refs:dNewVal (Results 1 – 4 of 4) sorted by relevance

/dports/editors/libreoffice6/libreoffice-6.4.7.2/vcl/source/control/
H A Dfmtfield.cxx891 bool FormattedField::ImplGetValue(double& dNewVal) in ImplGetValue() argument
893 dNewVal = m_dCurrentValue; in ImplGetValue()
897 dNewVal = m_dDefaultValue; in ImplGetValue()
912 dNewVal = nResult; in ImplGetValue()
913 dNewVal /= weld::SpinButton::Power10(GetDecimalDigits()); in ImplGetValue()
916 dNewVal = m_dCurrentValue; in ImplGetValue()
948 if (!ImplGetFormatter()->IsNumberFormat(sText, nFormatKey, dNewVal)) in ImplGetValue()
952 if (m_bHasMin && (dNewVal<m_dMinValue)) in ImplGetValue()
953 dNewVal = m_dMinValue; in ImplGetValue()
954 if (m_bHasMax && (dNewVal>m_dMaxValue)) in ImplGetValue()
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/vcl/source/control/
H A Dfmtfield.cxx786 bool Formatter::ImplGetValue(double& dNewVal) in ImplGetValue() argument
788 dNewVal = m_dCurrentValue; in ImplGetValue()
792 dNewVal = m_dDefaultValue; in ImplGetValue()
807 dNewVal = nResult; in ImplGetValue()
808 dNewVal /= weld::SpinButton::Power10(GetDecimalDigits()); in ImplGetValue()
811 dNewVal = m_dCurrentValue; in ImplGetValue()
843 if (!GetOrCreateFormatter()->IsNumberFormat(sText, nFormatKey, dNewVal)) in ImplGetValue()
847 if (m_bHasMin && (dNewVal<m_dMinValue)) in ImplGetValue()
848 dNewVal = m_dMinValue; in ImplGetValue()
849 if (m_bHasMax && (dNewVal>m_dMaxValue)) in ImplGetValue()
[all …]
/dports/editors/libreoffice/libreoffice-7.2.6.2/include/vcl/
H A Dformatter.hxx306 bool ImplGetValue(double& dNewVal);
/dports/editors/libreoffice6/libreoffice-6.4.7.2/include/vcl/
H A Dfmtfield.hxx250 bool ImplGetValue(double& dNewVal);