summaryrefslogtreecommitdiff
path: root/vbahelper
diff options
context:
space:
mode:
Diffstat (limited to 'vbahelper')
-rw-r--r--vbahelper/source/msforms/vbauserform.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vbahelper/source/msforms/vbauserform.cxx b/vbahelper/source/msforms/vbauserform.cxx
index 8f3c158c4e5a..c82a84fd1035 100644
--- a/vbahelper/source/msforms/vbauserform.cxx
+++ b/vbahelper/source/msforms/vbauserform.cxx
@@ -256,7 +256,7 @@ ScVbaUserForm::getValue( const OUString& aPropertyName )
uno::Reference< msforms::XControl > xVBAControl = ScVbaControlFactory::createUserformControl( mxContext, xControl, xDialogControl, m_xModel, mpGeometryHelper->getOffsetX(), mpGeometryHelper->getOffsetY() );
ScVbaControl* pControl = dynamic_cast< ScVbaControl* >( xVBAControl.get() );
if (pControl && !m_sLibName.isEmpty())
- pControl->setLibraryAndCodeName( m_sLibName.concat( "." ).concat( getName() ) );
+ pControl->setLibraryAndCodeName( m_sLibName + "." + getName() );
aResult <<= xVBAControl;
}
}