summaryrefslogtreecommitdiff
path: root/cui
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-01-31 08:53:39 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-01-31 21:21:35 +0000
commit54e1c8977629a1098cb677edffca5b76f51e8aa7 (patch)
tree9211e1bf5cc50e89eacc83ecbfb81b34eb0776ce /cui
parent48e14ccf97609a62711fd102266e35468fba2230 (diff)
drop unnecessary dtors
Change-Id: I033349bc554bca46a4b1d622cd8fb64d4c1f4866
Diffstat (limited to 'cui')
-rw-r--r--cui/source/dialogs/cuigrfflt.cxx12
-rw-r--r--cui/source/inc/cuigrfflt.hxx6
2 files changed, 2 insertions, 16 deletions
diff --git a/cui/source/dialogs/cuigrfflt.cxx b/cui/source/dialogs/cuigrfflt.cxx
index 4d0fcb92da80..4009454b3e8d 100644
--- a/cui/source/dialogs/cuigrfflt.cxx
+++ b/cui/source/dialogs/cuigrfflt.cxx
@@ -40,12 +40,6 @@ GraphicFilterDialog::PreviewWindow::PreviewWindow( Window* pParent, const ResId&
// -----------------------------------------------------------------------------
-GraphicFilterDialog::PreviewWindow::~PreviewWindow()
-{
-}
-
-// -----------------------------------------------------------------------------
-
void GraphicFilterDialog::PreviewWindow::Paint( const Rectangle& rRect )
{
Control::Paint( rRect );
@@ -136,12 +130,6 @@ GraphicFilterDialog::GraphicFilterDialog( Window* pParent, const ResId& rResId,
// -----------------------------------------------------------------------------
-GraphicFilterDialog::~GraphicFilterDialog()
-{
-}
-
-// -----------------------------------------------------------------------------
-
IMPL_LINK_NOARG(GraphicFilterDialog, ImplPreviewTimeoutHdl)
{
maTimer.Stop();
diff --git a/cui/source/inc/cuigrfflt.hxx b/cui/source/inc/cuigrfflt.hxx
index 77f1fc136aa3..29f35463e17c 100644
--- a/cui/source/inc/cuigrfflt.hxx
+++ b/cui/source/inc/cuigrfflt.hxx
@@ -50,8 +50,7 @@ private:
public:
- PreviewWindow( Window* pParent, const ResId& rResId );
- ~PreviewWindow();
+ PreviewWindow( Window* pParent, const ResId& rResId );
void SetGraphic( const Graphic& rGraphic );
};
@@ -80,8 +79,7 @@ protected:
public:
- GraphicFilterDialog( Window* pParent, const ResId& rResId, const Graphic& rGraphic );
- ~GraphicFilterDialog();
+ GraphicFilterDialog( Window* pParent, const ResId& rResId, const Graphic& rGraphic );
virtual Graphic GetFilteredGraphic( const Graphic& rGraphic, double fScaleX, double fScaleY ) = 0;
};