diff options
author | Caolán McNamara <caolanm@redhat.com> | 2018-11-01 17:07:43 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2018-11-01 22:12:19 +0100 |
commit | d611d5535b818854f9c6c6d4c144c2e5a9155a1a (patch) | |
tree | 06b3eceee9f3815e7b4c17093a228273e45ee6ef | |
parent | 0ee11c3f55ec1285d8febc065bda44224052eaae (diff) |
Resolves: tdf#121097 need an initial call to CBClickHdl
Change-Id: If075c6b555d6bca479d02c27bc6b4adb48b8550c
Reviewed-on: https://gerrit.libreoffice.org/62755
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r-- | reportdesign/source/ui/dlg/DateTime.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/reportdesign/source/ui/dlg/DateTime.cxx b/reportdesign/source/ui/dlg/DateTime.cxx index 5b04a35d7870..9b91d657d4c0 100644 --- a/reportdesign/source/ui/dlg/DateTime.cxx +++ b/reportdesign/source/ui/dlg/DateTime.cxx @@ -72,6 +72,7 @@ ODateTimeDialog::ODateTimeDialog(weld::Window* _pParent, const uno::Reference< r weld::CheckButton* aCheckBoxes[] = { m_xDate.get(), m_xTime.get() }; for (weld::CheckButton* pCheckBox : aCheckBoxes) pCheckBox->connect_toggled(LINK(this,ODateTimeDialog,CBClickHdl)); + CBClickHdl(*m_xTime); } void ODateTimeDialog::InsertEntry(sal_Int16 _nNumberFormatId) |