diff options
Diffstat (limited to 'include/vcl/svlbitm.hxx')
-rw-r--r-- | include/vcl/svlbitm.hxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/vcl/svlbitm.hxx b/include/vcl/svlbitm.hxx index b5d00aa95f6b..dc8cde9bcb02 100644 --- a/include/vcl/svlbitm.hxx +++ b/include/vcl/svlbitm.hxx @@ -105,6 +105,7 @@ class VCL_DLLPUBLIC SvLBoxString : public SvLBoxItem { private: bool mbEmphasized; + double mfAlign; protected: OUString maText; @@ -120,6 +121,8 @@ public: virtual int CalcWidth(const SvTreeListBox* pView) const override; + void Align(double fAlign) { mfAlign = fAlign; } + void Emphasize(bool bEmphasize) { mbEmphasized = bEmphasize; } bool IsEmphasized() const { return mbEmphasized; } |