diff options
-rw-r--r-- | extensions/source/propctrlr/taborder.cxx | 9 | ||||
-rw-r--r-- | extensions/source/scanner/sanedlg.cxx | 9 | ||||
-rw-r--r-- | sc/source/ui/condformat/condformatdlg.cxx | 11 | ||||
-rw-r--r-- | sd/source/filter/html/htmlattr.cxx | 11 | ||||
-rw-r--r-- | sd/source/ui/dlg/RemoteDialogClientBox.cxx | 9 | ||||
-rw-r--r-- | sd/source/ui/dlg/docprev.cxx | 11 | ||||
-rw-r--r-- | sd/source/ui/dlg/sdtreelb.cxx | 9 | ||||
-rw-r--r-- | sd/source/ui/table/TableDesignPane.cxx | 9 |
8 files changed, 8 insertions, 70 deletions
diff --git a/extensions/source/propctrlr/taborder.cxx b/extensions/source/propctrlr/taborder.cxx index 225c74629556..09f3a6830c52 100644 --- a/extensions/source/propctrlr/taborder.cxx +++ b/extensions/source/propctrlr/taborder.cxx @@ -300,14 +300,7 @@ namespace pcr SetSelectionMode( SelectionMode::Multiple ); } - VCL_BUILDER_DECL_FACTORY(TabOrderListBox) - { - WinBits nWinStyle = WB_TABSTOP; - OString sBorder = VclBuilder::extractCustomProperty(rMap); - if (!sBorder.isEmpty()) - nWinStyle |= WB_BORDER; - rRet = VclPtr<TabOrderListBox>::Create(pParent, nWinStyle); - } + VCL_BUILDER_FACTORY_CONSTRUCTOR(TabOrderListBox, WB_TABSTOP) TabOrderListBox::~TabOrderListBox() { diff --git a/extensions/source/scanner/sanedlg.cxx b/extensions/source/scanner/sanedlg.cxx index 386bd3ef3eb5..1bf9ffa1978e 100644 --- a/extensions/source/scanner/sanedlg.cxx +++ b/extensions/source/scanner/sanedlg.cxx @@ -199,14 +199,7 @@ public: } }; -VCL_BUILDER_DECL_FACTORY(ScanPreview) -{ - WinBits nWinStyle = 0; - OString sBorder = VclBuilder::extractCustomProperty(rMap); - if (!sBorder.isEmpty()) - nWinStyle |= WB_BORDER; - rRet = VclPtr<ScanPreview>::Create(pParent, nWinStyle); -} +VCL_BUILDER_FACTORY_CONSTRUCTOR(ScanPreview, 0) SaneDlg::SaneDlg( vcl::Window* pParent, Sane& rSane, bool bScanEnabled ) : ModalDialog(pParent, "SaneDialog", "modules/scanner/ui/sanedialog.ui"), diff --git a/sc/source/ui/condformat/condformatdlg.cxx b/sc/source/ui/condformat/condformatdlg.cxx index 4d03fcfb890f..22bd55a87168 100644 --- a/sc/source/ui/condformat/condformatdlg.cxx +++ b/sc/source/ui/condformat/condformatdlg.cxx @@ -144,16 +144,7 @@ void ScCondFormatList::init(ScDocument* pDoc, ScCondFormatDlg* pDialogParent, RecalcAll(); } -VCL_BUILDER_DECL_FACTORY(ScCondFormatList) -{ - WinBits nWinBits = 0; - - OString sBorder = VclBuilder::extractCustomProperty(rMap); - if (!sBorder.isEmpty()) - nWinBits |= WB_BORDER; - - rRet = VclPtr<ScCondFormatList>::Create(pParent, nWinBits); -} +VCL_BUILDER_FACTORY_CONSTRUCTOR(ScCondFormatList, 0) Size ScCondFormatList::GetOptimalSize() const { diff --git a/sd/source/filter/html/htmlattr.cxx b/sd/source/filter/html/htmlattr.cxx index fe709ff7bea4..13e5f497dd31 100644 --- a/sd/source/filter/html/htmlattr.cxx +++ b/sd/source/filter/html/htmlattr.cxx @@ -27,16 +27,7 @@ SdHtmlAttrPreview::SdHtmlAttrPreview(vcl::Window* pParent, WinBits nStyle) { } -VCL_BUILDER_DECL_FACTORY(SdHtmlAttrPreview) -{ - WinBits nWinStyle = 0; - - OString sBorder = VclBuilder::extractCustomProperty(rMap); - if (!sBorder.isEmpty()) - nWinStyle |= WB_BORDER; - - rRet = VclPtr<SdHtmlAttrPreview>::Create(pParent, nWinStyle); -} +VCL_BUILDER_FACTORY_CONSTRUCTOR(SdHtmlAttrPreview, 0) SdHtmlAttrPreview::~SdHtmlAttrPreview() { diff --git a/sd/source/ui/dlg/RemoteDialogClientBox.cxx b/sd/source/ui/dlg/RemoteDialogClientBox.cxx index b1c466f8bc5e..cd67fbdd6d92 100644 --- a/sd/source/ui/dlg/RemoteDialogClientBox.cxx +++ b/sd/source/ui/dlg/RemoteDialogClientBox.cxx @@ -108,14 +108,7 @@ ClientBox::ClientBox( vcl::Window* pParent, WinBits nStyle ) : Show(); } -VCL_BUILDER_DECL_FACTORY(ClientBox) -{ - WinBits nWinStyle = WB_TABSTOP; - OString sBorder = VclBuilder::extractCustomProperty(rMap); - if (!sBorder.isEmpty()) - nWinStyle |= WB_BORDER; - rRet = VclPtr<ClientBox>::Create(pParent, nWinStyle); -} +VCL_BUILDER_FACTORY_CONSTRUCTOR(ClientBox, WB_TABSTOP) Size ClientBox::GetOptimalSize() const { diff --git a/sd/source/ui/dlg/docprev.cxx b/sd/source/ui/dlg/docprev.cxx index 640dec1a7032..4d8e4bb93f1f 100644 --- a/sd/source/ui/dlg/docprev.cxx +++ b/sd/source/ui/dlg/docprev.cxx @@ -50,16 +50,7 @@ using namespace ::com::sun::star::uno; const int SdDocPreviewWin::FRAME = 4; -VCL_BUILDER_DECL_FACTORY(SdDocPreviewWin) -{ - WinBits nWinStyle = 0; - - OString sBorder = VclBuilder::extractCustomProperty(rMap); - if (!sBorder.isEmpty()) - nWinStyle |= WB_BORDER; - - rRet = VclPtr<SdDocPreviewWin>::Create(pParent, nWinStyle); -} +VCL_BUILDER_FACTORY_CONSTRUCTOR(SdDocPreviewWin, 0) SdDocPreviewWin::SdDocPreviewWin( vcl::Window* pParent, const WinBits nStyle ) : Control(pParent, nStyle), pMetaFile( nullptr ) diff --git a/sd/source/ui/dlg/sdtreelb.cxx b/sd/source/ui/dlg/sdtreelb.cxx index c210ac4988d0..19baf9a76f07 100644 --- a/sd/source/ui/dlg/sdtreelb.cxx +++ b/sd/source/ui/dlg/sdtreelb.cxx @@ -96,14 +96,7 @@ SdPageObjsTLB::SdPageObjsTransferable::SdPageObjsTransferable( rParent.SetupDragOrigin(); } -VCL_BUILDER_DECL_FACTORY(SdPageObjsTLB) -{ - WinBits nWinStyle = WB_TABSTOP; - OString sBorder = VclBuilder::extractCustomProperty(rMap); - if (!sBorder.isEmpty()) - nWinStyle |= WB_BORDER; - rRet = VclPtr<SdPageObjsTLB>::Create(pParent, nWinStyle); -} +VCL_BUILDER_FACTORY_CONSTRUCTOR(SdPageObjsTLB, WB_TABSTOP) SdPageObjsTLB::SdPageObjsTransferable::~SdPageObjsTransferable() { diff --git a/sd/source/ui/table/TableDesignPane.cxx b/sd/source/ui/table/TableDesignPane.cxx index 47f87908462c..93bd711931fe 100644 --- a/sd/source/ui/table/TableDesignPane.cxx +++ b/sd/source/ui/table/TableDesignPane.cxx @@ -359,14 +359,7 @@ void TableValueSet::updateSettings() } } -VCL_BUILDER_DECL_FACTORY(TableValueSet) -{ - WinBits nWinStyle = WB_TABSTOP; - OString sBorder = VclBuilder::extractCustomProperty(rMap); - if (!sBorder.isEmpty()) - nWinStyle |= WB_BORDER; - rRet = VclPtr<TableValueSet>::Create(pParent, nWinStyle); -} +VCL_BUILDER_FACTORY_CONSTRUCTOR(TableValueSet, WB_TABSTOP) void TableDesignWidget::updateControls() { |