diff options
author | Henry Castro <hcastro@collabora.com> | 2020-02-04 15:05:09 -0400 |
---|---|---|
committer | Henry Castro <hcastro@collabora.com> | 2020-02-04 22:38:49 +0100 |
commit | 62aa2480090595b9cae53faa0a636c08f4f49bb6 (patch) | |
tree | f24983f2bb12114810c62b150240e56735b56911 | |
parent | 60d097b1672bc4773ae90efc2e3250c9d6176f45 (diff) |
lok: add "type" information when a graphic is selected
Change-Id: I67a36d3aabbc197d9ac8f6ca4509dafd6f2620f0
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87989
Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com>
Reviewed-by: Henry Castro <hcastro@collabora.com>
-rw-r--r-- | svx/source/svdraw/svdmrkv.cxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/svx/source/svdraw/svdmrkv.cxx b/svx/source/svdraw/svdmrkv.cxx index bd19e90cfc5c..8c23ae2b114d 100644 --- a/svx/source/svdraw/svdmrkv.cxx +++ b/svx/source/svdraw/svdmrkv.cxx @@ -851,9 +851,10 @@ void SdrMarkView::SetMarkHandles(SfxViewShell* pOtherShell) OStringBuffer aExtraInfo; - aExtraInfo.append("{ \"id\": \""); + aExtraInfo.append("{\"id\":\""); aExtraInfo.append(OString::number(reinterpret_cast<sal_IntPtr>(pO))); - aExtraInfo.append("\""); + aExtraInfo.append("\",\"type\":"); + aExtraInfo.append(OString::number(pO->GetObjIdentifier())); if (bWriterGraphic) { @@ -985,7 +986,7 @@ void SdrMarkView::SetMarkHandles(SfxViewShell* pOtherShell) } } } - aExtraInfo.append(" }"); + aExtraInfo.append("}"); sSelectionText = aSelection.toString(); sSelectionText += OString(", ") + OString::number(nRotAngle); |