diff options
author | melikeyurtoglu <aysemelikeyurtoglu@gmail.com> | 2016-11-03 00:47:13 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-11-03 06:36:27 +0000 |
commit | 10197c094b3267adc8071bcef482b64dc291deed (patch) | |
tree | c6627d4ffe8aa545d17e149bc190fca20e0f6a55 /chart2 | |
parent | fa80dae9a79a7414af8adcb91bc04dfff13bbb63 (diff) |
tdf#91222 VclBuilder constructor cleanup
Change-Id: Ief4a9dfc0e0a2dad04c3ac9f1840b823fd9357de
Signed-off-by: melikeyurtoglu <aysemelikeyurtoglu@gmail.com>
Reviewed-on: https://gerrit.libreoffice.org/30507
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'chart2')
-rw-r--r-- | chart2/source/controller/dialogs/tp_DataSourceControls.cxx | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/chart2/source/controller/dialogs/tp_DataSourceControls.cxx b/chart2/source/controller/dialogs/tp_DataSourceControls.cxx index 10de20143d97..0a31bcb10abd 100644 --- a/chart2/source/controller/dialogs/tp_DataSourceControls.cxx +++ b/chart2/source/controller/dialogs/tp_DataSourceControls.cxx @@ -33,14 +33,7 @@ SeriesListBox::SeriesListBox(vcl::Window* pParent, WinBits nStyle) : SvTreeListBox(pParent, nStyle) {} -VCL_BUILDER_DECL_FACTORY(SeriesListBox) -{ - WinBits nWinStyle = 0; - OString sBorder = VclBuilder::extractCustomProperty(rMap); - if (!sBorder.isEmpty()) - nWinStyle |= WB_BORDER; - rRet = VclPtr<SeriesListBox>::Create(pParent, nWinStyle); -} +VCL_BUILDER_FACTORY_CONSTRUCTOR(SeriesListBox, 0) SvTreeListEntry* SeriesListBox::CreateEntry() const { |