summaryrefslogtreecommitdiff
path: root/include/vcl/svlbitm.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/vcl/svlbitm.hxx')
-rw-r--r--include/vcl/svlbitm.hxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/vcl/svlbitm.hxx b/include/vcl/svlbitm.hxx
index e5c5f6dd840c..16665dd8c73e 100644
--- a/include/vcl/svlbitm.hxx
+++ b/include/vcl/svlbitm.hxx
@@ -104,6 +104,8 @@ public:
class VCL_DLLPUBLIC SvLBoxString : public SvLBoxItem
{
+private:
+ bool mbEmphasized;
protected:
OUString maText;
@@ -117,6 +119,9 @@ public:
SvTreeListEntry* pEntry,
SvViewDataItem* pViewData = nullptr) override;
+ void Emphasize(bool bEmphasize) { mbEmphasized = bEmphasize; }
+ bool IsEmphasized() const { return mbEmphasized; }
+
const OUString& GetText() const
{
return maText;