svtools/source/control/valueset.cxx |    5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

New commits:
commit 943cd5381b241f18f9ede25f3c2de4168a998caa
Author:     Henry Castro <hcas...@collabora.com>
AuthorDate: Wed Oct 23 15:25:49 2019 -0400
Commit:     Henry Castro <hcas...@collabora.com>
CommitDate: Thu Oct 24 02:09:58 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/81421
    Tested-by: Jenkins
    Reviewed-by: Henry Castro <hcas...@collabora.com>

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));
     }
 
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to