| commit | fe31edb29e5e77bb60e3aa73ec6a0380314acc61 | [log] |
|---|---|---|
| author | tagezi <lera.goncharuk@gmail.com> | Tue Dec 19 13:32:26 2017 +0200 |
| committer | Mike Kaganski <mike.kaganski@collabora.com> | Wed Dec 20 03:28:51 2017 +0100 |
| tree | a9a53debff42658753786ce0a6feb610c916b5f8 | |
| parent | 6bf0a1c61ef7b0df2c5c116d6a0f05ec6565d262 [diff] |
tdf#114545 Enabling/Disabling Ok button depending on correct format Change-Id: Iab3c4363dda0260d16c7167946044c39c21b863a Reviewed-on: https://gerrit.libreoffice.org/46790 Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com> Tested-by: Jenkins <ci@libreoffice.org> (cherry picked from commit 7504af39686171ffb16e70f798d9ecf4ea98f1d3) Reviewed-on: https://gerrit.libreoffice.org/46823 Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
diff --git a/sc/source/ui/condformat/condformatdlg.cxx b/sc/source/ui/condformat/condformatdlg.cxx index b7b0c40..0409efd 100644 --- a/sc/source/ui/condformat/condformatdlg.cxx +++ b/sc/source/ui/condformat/condformatdlg.cxx
@@ -772,9 +772,15 @@ IMPL_LINK( ScCondFormatDlg, EdRangeModifyHdl, Edit&, rEdit, void ) ScRefFlags nFlags = aRange.Parse(aRangeStr, mpViewData->GetDocument(), mpViewData->GetDocument()->GetAddressConvention()); if(nFlags & ScRefFlags::VALID) { rEdit.SetControlBackground(GetSettings().GetStyleSettings().GetWindowColor()); mpBtnOk->Enable(true); } else { rEdit.SetControlBackground(COL_LIGHTRED); mpBtnOk->Enable(false); } updateTitle(); }