[Libreoffice-commits] core.git: cui/source
Rtch90 (via logerrit)
logerrit at kemper.freedesktop.org
Wed Apr 24 08:44:00 UTC 2019
cui/source/options/optdict.cxx | 3 +++
1 file changed, 3 insertions(+)
New commits:
commit 4dba49c9f92de40c3935f1778cf301030db08343
Author: Rtch90 <ritchie.cunningham at protonmail.com>
AuthorDate: Tue Apr 23 01:56:38 2019 +0100
Commit: Katarina Behrens <Katarina.Behrens at cib.de>
CommitDate: Wed Apr 24 10:43:03 2019 +0200
tdf#124893 Validity check on new dialog creation.
Change-Id: I5f94c8204a4c35470e891eb89cfbe74aad852bf4
Reviewed-on: https://gerrit.libreoffice.org/71084
Tested-by: Jenkins
Reviewed-by: Katarina Behrens <Katarina.Behrens at cib.de>
diff --git a/cui/source/options/optdict.cxx b/cui/source/options/optdict.cxx
index fb0a329fe020..ab4711eb1a2f 100644
--- a/cui/source/options/optdict.cxx
+++ b/cui/source/options/optdict.cxx
@@ -100,6 +100,9 @@ SvxNewDictionaryDialog::SvxNewDictionaryDialog(weld::Window* pParent)
, m_xExceptBtn(m_xBuilder->weld_check_button("except"))
, m_xOKBtn(m_xBuilder->weld_button("ok"))
{
+ // Prevent creation of dictionary without a name.
+ m_xOKBtn->set_sensitive(false);
+
// install handler
m_xNameEdit->connect_changed(LINK(this, SvxNewDictionaryDialog, ModifyHdl_Impl));
m_xOKBtn->connect_clicked(LINK(this, SvxNewDictionaryDialog, OKHdl_Impl));
More information about the Libreoffice-commits
mailing list