summaryrefslogtreecommitdiff
path: root/forms
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-05-10 10:08:35 +0200
committerSamuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>2016-05-13 06:44:06 +0000
commit33fe9e6da9241aacac6816cbb5211f4d5fa7fba1 (patch)
tree59563ff84226be219f66825593c5b190972362b0 /forms
parentaf0f89913a250cef9545db6e0e75f3650c65f89c (diff)
Missing break in switch
Apparently forgotten when introducing the case PROPERTY_ID_GENERATEVBAEVENTS in 4fae740db79d4e7cc97440e2bab8d1ef612d9b51 "Disable fake VBA events for the old-style form controls." Change-Id: Id2783fd4f087669bd200a9c33eaad2bb6b7b50cd (cherry picked from commit 1f7a31a461bb3a6fcd277ab57875405875568f8b) Reviewed-on: https://gerrit.libreoffice.org/24916 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Samuel Mehrbrodt <Samuel.Mehrbrodt@cib.de>
Diffstat (limited to 'forms')
-rw-r--r--forms/source/component/FormComponent.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/forms/source/component/FormComponent.cxx b/forms/source/component/FormComponent.cxx
index 3ac6da085c6f..376ba7a97844 100644
--- a/forms/source/component/FormComponent.cxx
+++ b/forms/source/component/FormComponent.cxx
@@ -931,6 +931,7 @@ void OControlModel::getFastPropertyValue( Any& _rValue, sal_Int32 _nHandle ) con
break;
case PROPERTY_ID_GENERATEVBAEVENTS:
_rValue <<= m_bGenerateVbEvents;
+ break;
// added for exporting OCX control
case PROPERTY_ID_CONTROL_TYPE_IN_MSO:
_rValue <<= (sal_Int16)m_nControlTypeinMSO;