From 1f7a31a461bb3a6fcd277ab57875405875568f8b Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Tue, 10 May 2016 10:08:35 +0200 Subject: 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 --- forms/source/component/FormComponent.cxx | 1 + 1 file changed, 1 insertion(+) (limited to 'forms/source/component/FormComponent.cxx') diff --git a/forms/source/component/FormComponent.cxx b/forms/source/component/FormComponent.cxx index e33cfb11df08..27ddd31e27e3 100644 --- a/forms/source/component/FormComponent.cxx +++ b/forms/source/component/FormComponent.cxx @@ -923,6 +923,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; -- cgit