sd/source/ui/dlg/dlgctrls.cxx | 19 ------------------- sd/source/ui/inc/dlgctrls.hxx | 9 --------- 2 files changed, 28 deletions(-)
New commits: commit 542fd21c94c5e0bbd1f1a21991bb7b189da5d915 Author: Takeshi Abe <[email protected]> Date: Mon May 8 19:11:34 2017 +0900 sd: Kill empty FadeEffectLBImpl This completes 3fea7ac94b986ba5e3632d1bbb383c65ced79f1a. Change-Id: Iee18c577354de8b569f5e07378964b267e766554 Reviewed-on: https://gerrit.libreoffice.org/37383 Tested-by: Jenkins <[email protected]> Reviewed-by: Caolán McNamara <[email protected]> Tested-by: Caolán McNamara <[email protected]> diff --git a/sd/source/ui/dlg/dlgctrls.cxx b/sd/source/ui/dlg/dlgctrls.cxx index 30fc287e03c2..dc02a764c0fa 100644 --- a/sd/source/ui/dlg/dlgctrls.cxx +++ b/sd/source/ui/dlg/dlgctrls.cxx @@ -19,9 +19,6 @@ #include <vcl/builderfactory.hxx> -#include <map> -#include <set> - #include "strings.hrc" #include "dlgctrls.hxx" #include "sdresid.hxx" @@ -30,25 +27,9 @@ using namespace ::sd; -struct FadeEffectLBImpl -{ -}; - FadeEffectLB::FadeEffectLB(vcl::Window* pParent, WinBits nStyle) : ListBox(pParent, nStyle) - , mpImpl(new FadeEffectLBImpl) -{ -} - -FadeEffectLB::~FadeEffectLB() -{ - disposeOnce(); -} - -void FadeEffectLB::dispose() { - mpImpl.reset(); - ListBox::dispose(); } VCL_BUILDER_DECL_FACTORY(FadeEffectLB) diff --git a/sd/source/ui/inc/dlgctrls.hxx b/sd/source/ui/inc/dlgctrls.hxx index b6ac216955f8..554df3f860b0 100644 --- a/sd/source/ui/inc/dlgctrls.hxx +++ b/sd/source/ui/inc/dlgctrls.hxx @@ -28,19 +28,10 @@ #include "sddllapi.h" #include <memory> -/** - * FadeEffectLB - */ -struct FadeEffectLBImpl; - class SD_DLLPUBLIC FadeEffectLB : public ListBox { public: FadeEffectLB(vcl::Window* pParent, WinBits nStyle); - virtual ~FadeEffectLB() override; - virtual void dispose() override; - - std::unique_ptr<FadeEffectLBImpl> mpImpl; }; #endif // INCLUDED_SD_SOURCE_UI_INC_DLGCTRLS_HXX
_______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
