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 dc8cde9bcb02..abe2446ade11 100644 --- a/include/vcl/svlbitm.hxx +++ b/include/vcl/svlbitm.hxx @@ -105,6 +105,7 @@ class VCL_DLLPUBLIC SvLBoxString : public SvLBoxItem { private: bool mbEmphasized; + bool mbCustom; double mfAlign; protected: OUString maText; @@ -126,6 +127,8 @@ public: void Emphasize(bool bEmphasize) { mbEmphasized = bEmphasize; } bool IsEmphasized() const { return mbEmphasized; } + void SetCustomRender() { mbCustom = true; } + const OUString& GetText() const { return maText; |