diff options
author | Lionel Elie Mamane <lionel@mamane.lu> | 2013-05-12 00:35:31 +0200 |
---|---|---|
committer | Lionel Elie Mamane <lionel@mamane.lu> | 2013-05-12 05:07:52 +0200 |
commit | 7fd1cc18130464a9f09cb7a866e88c4d52e4716d (patch) | |
tree | 49f60585a31ca8813d04fd4bcb5bb62b828c14c7 /svx | |
parent | 9dfc3807dbff1a40f487d020446265bb85d0ac16 (diff) |
fdo#63695 revert hackish fix to i#51621
Change-Id: I688a659207c4b95cc98ff5dc5c5622d4592b3f89
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/form/fmtextcontrolshell.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/svx/source/form/fmtextcontrolshell.cxx b/svx/source/form/fmtextcontrolshell.cxx index 3e7f1aa2f8db..c4d3f2b1047c 100644 --- a/svx/source/form/fmtextcontrolshell.cxx +++ b/svx/source/form/fmtextcontrolshell.cxx @@ -1271,8 +1271,9 @@ namespace svx // shells too much (In theory, nearly every slot could have an own shell then). // // #i51621# / 2005-08-19 / frank.schoenheit@sun.com - bool bHaveAnyServeableSlots = m_xActiveTextComponent.is() || !m_aControlFeatures.empty(); - if ( m_aControlActivationHandler.IsSet() && bHaveAnyServeableSlots ) + // bool bHaveAnyServeableSlots = m_xActiveTextComponent.is() || !m_aControlFeatures.empty(); + // LEM: not calling m_aControlActivatonHandler causes fdo#63695, so disable this hack for now. + if ( m_aControlActivationHandler.IsSet() /* && bHaveAnyServeableSlots */ ) m_aControlActivationHandler.Call( NULL ); m_bNeedClipboardInvalidation = true; |