diff options
author | Noel <noelgrandin@gmail.com> | 2020-11-02 10:05:18 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-11-02 11:12:14 +0100 |
commit | 739e12f5a12af8ccf7a5338cf02e75e049676331 (patch) | |
tree | 5cf3099ec9b6eb3a9f4cbef09305b967df4a8379 /svtools | |
parent | 5acfeb6e34963bc0491a83ce76f2c2fa067e5769 (diff) |
remove duplicate initialisation
Change-Id: Ia1b99ed420daf5d238082f374eab7b76920714f2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105167
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/uno/unocontroltablemodel.cxx | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/svtools/source/uno/unocontroltablemodel.cxx b/svtools/source/uno/unocontroltablemodel.cxx index 351719908455..e4711daf33d2 100644 --- a/svtools/source/uno/unocontroltablemodel.cxx +++ b/svtools/source/uno/unocontroltablemodel.cxx @@ -80,9 +80,6 @@ namespace svt::table ,m_eVerticalAlign ( VerticalAlignment_TOP ) ,bEnabled ( true ) { - bHasColumnHeaders = true; - bHasRowHeaders = false; - bEnabled = true; pRenderer = std::make_shared<GridTableRenderer>( *this ); pInputHandler = std::make_shared<DefaultInputHandler>(); } |