diff options
author | Caolán McNamara <caolanm@redhat.com> | 2020-02-02 20:32:10 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2020-02-03 09:48:57 +0100 |
commit | dbad63982fd6df2593e4f57143ac3e7274528b66 (patch) | |
tree | 420818d1f6805349dd528127dd2dcc6e63af2473 /svtools | |
parent | 19be62a31d12999cf279f9e9d7b20d4cb40fd341 (diff) |
FontStyleBox does not appear in any .ui files anymore
Change-Id: I8da23000064c475863b3b911207fa220ed662a2f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87834
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/control/ctrlbox.cxx | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/svtools/source/control/ctrlbox.cxx b/svtools/source/control/ctrlbox.cxx index d0801b7e44d4..db06c557178f 100644 --- a/svtools/source/control/ctrlbox.cxx +++ b/svtools/source/control/ctrlbox.cxx @@ -723,20 +723,6 @@ Size FontStyleBox::GetOptimalSize() const return ComboBox::GetOptimalSize(); } -extern "C" SAL_DLLPUBLIC_EXPORT void makeFontStyleBox(VclPtr<vcl::Window> & rRet, const VclPtr<vcl::Window> & pParent, VclBuilder::stringmap & rMap) -{ - static_assert(std::is_same_v<std::remove_pointer_t<VclBuilder::customMakeWidget>, - decltype(makeFontStyleBox)>); - bool bDropdown = BuilderUtils::extractDropdown(rMap); - WinBits nWinBits = WB_LEFT|WB_VCENTER|WB_3DLOOK|WB_TABSTOP; - if (bDropdown) - nWinBits |= WB_DROPDOWN; - VclPtrInstance<FontStyleBox> pListBox(pParent, nWinBits); - if (bDropdown) - pListBox->EnableAutoSize(true); - rRet = pListBox; -} - void FontStyleBox::Modify() { CharClass aChrCls( ::comphelper::getProcessComponentContext(), |