embeddedobj/source/msole/oleembed.cxx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-)
New commits: commit 01f2379603de09ba1b5e979166e4b5d60a90c1d5 Author: Caolán McNamara <[email protected]> AuthorDate: Tue Feb 2 12:58:47 2021 +0000 Commit: Michael Stahl <[email protected]> CommitDate: Wed Feb 3 11:09:46 2021 +0100 tdf#140079 Claim support for the OleEmbeddedObject::doVerb -9 fallback So in SfxViewFrame::GetState_Impl in case SID_OBJECT hasVerbs is not empty, so that the doVerb attempt with -9 fallback is attempted Change-Id: If32c50fedbc2a269ac277061c76a63514d320bb7 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/110299 Tested-by: Jenkins Reviewed-by: Michael Stahl <[email protected]> diff --git a/embeddedobj/source/msole/oleembed.cxx b/embeddedobj/source/msole/oleembed.cxx index b22ece2f7cea..ce360817f25c 100644 --- a/embeddedobj/source/msole/oleembed.cxx +++ b/embeddedobj/source/msole/oleembed.cxx @@ -1004,7 +1004,12 @@ uno::Sequence< embed::VerbDescriptor > SAL_CALL OleEmbeddedObject::getSupportedV else #endif { - return uno::Sequence< embed::VerbDescriptor >(); + // tdf#140079 Claim support for the OleEmbeddedObject::doVerb -9 fallback. + // So in SfxViewFrame::GetState_Impl in case SID_OBJECT hasVerbs is not + // empty, so that the doVerb attempt with -9 fallback is attempted + uno::Sequence<embed::VerbDescriptor> aRet(1); + aRet[0].VerbID = -9; + return aRet; } } _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
