svtools/source/control/valueset.cxx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-)
New commits: commit 3eee1297ba82dbbfc9b3f185cbe65b77bd582d2f Author: Henry Castro <[email protected]> AuthorDate: Wed Oct 23 15:25:49 2019 -0400 Commit: Henry Castro <[email protected]> CommitDate: Wed Oct 23 22:59:46 2019 +0200 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/81418 Tested-by: Jenkins CollaboraOffice <[email protected]> Reviewed-by: Henry Castro <[email protected]> diff --git a/svtools/source/control/valueset.cxx b/svtools/source/control/valueset.cxx index d58decd8f177..8886e0dbd530 100644 --- a/svtools/source/control/valueset.cxx +++ b/svtools/source/control/valueset.cxx @@ -1450,8 +1450,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)); } _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
