diff options
author | Caolán McNamara <caolanm@redhat.com> | 2020-08-27 20:03:55 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2020-08-28 12:28:43 +0200 |
commit | a0f282f57213c4318c1de10d74ee43b850886147 (patch) | |
tree | d91c196b4615517cc3f8e8f89de9e55d5c5719f8 | |
parent | 0d7a15c7dd622c3ba035ecca59de4bba57d1ea5e (diff) |
make FixedLine final
Change-Id: I4b4f98dae1e719511fcfd943e046644c56b3c252
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101498
Tested-by: Caolán McNamara <caolanm@redhat.com>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r-- | include/vcl/fixed.hxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/vcl/fixed.hxx b/include/vcl/fixed.hxx index fdfda987b900..da96bf79d2af 100644 --- a/include/vcl/fixed.hxx +++ b/include/vcl/fixed.hxx @@ -72,7 +72,7 @@ public: vcl::Window* get_mnemonic_widget() const { return m_pMnemonicWindow; } }; -class VCL_DLLPUBLIC FixedLine : public Control +class VCL_DLLPUBLIC FixedLine final : public Control { private: using Control::ImplInitSettings; @@ -81,7 +81,6 @@ private: SAL_DLLPRIVATE static WinBits ImplInitStyle( WinBits nStyle ); SAL_DLLPRIVATE void ImplDraw(vcl::RenderContext& rRenderContext); -protected: virtual void FillLayoutData() const override; virtual const vcl::Font& GetCanonicalFont( const StyleSettings& _rStyle ) const override; |