From 943cd5381b241f18f9ede25f3c2de4168a998caa Mon Sep 17 00:00:00 2001 From: Henry Castro Date: Wed, 23 Oct 2019 15:25:49 -0400 Subject: lok: valueset: dump as property tree the selected item The client side requires the data of the selected item to apply CSS border styles. Change-Id: I19f662329e4cfce45e32f82dcf9398dc9c3ecaec Reviewed-on: https://gerrit.libreoffice.org/81421 Tested-by: Jenkins Reviewed-by: Henry Castro --- svtools/source/control/valueset.cxx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'svtools/source') diff --git a/svtools/source/control/valueset.cxx b/svtools/source/control/valueset.cxx index 462cd55e99d1..08721c25acde 100644 --- a/svtools/source/control/valueset.cxx +++ b/svtools/source/control/valueset.cxx @@ -1446,8 +1446,11 @@ boost::property_tree::ptree ValueSet::DumpAsPropertyTree() boost::property_tree::ptree aEntry; ValueSetItem* pItem = mItemList[nIt].get(); aEntry.put("id", pItem->mnId); - aEntry.put("text", pItem->maText); aEntry.put("image", pItem->maImage.GetStock()); + if (mnSelItemId == pItem->mnId) { + aEntry.put("selected", true); + } + aEntries.push_back(std::make_pair("", aEntry)); } -- cgit