summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2017-05-08 19:11:34 +0900
committerCaolán McNamara <caolanm@redhat.com>2017-05-09 10:07:39 +0200
commit542fd21c94c5e0bbd1f1a21991bb7b189da5d915 (patch)
treea81d5d325e81883291d7f25a2b68133ad63dcd29 /sd
parenta81eaa6d018d6aa3ee5ebf35dcc221624767ddee (diff)
sd: Kill empty FadeEffectLBImpl
This completes 3fea7ac94b986ba5e3632d1bbb383c65ced79f1a. Change-Id: Iee18c577354de8b569f5e07378964b267e766554 Reviewed-on: https://gerrit.libreoffice.org/37383 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sd')
-rw-r--r--sd/source/ui/dlg/dlgctrls.cxx19
-rw-r--r--sd/source/ui/inc/dlgctrls.hxx9
2 files changed, 0 insertions, 28 deletions
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