summaryrefslogtreecommitdiff
path: root/vcl/source/window/popupmenuwindow.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-01-26 13:48:47 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-01-27 06:50:02 +0000
commit32a461bdd6ffda4b59ff262e1fcbcbe8bf2be7a0 (patch)
treeaa485a2f87ef09d7839fb1c7bedca0a6cfd5f865 /vcl/source/window/popupmenuwindow.cxx
parentfab2f546d1fb3ceaf5ee5d4d728f1728a8f1e7f3 (diff)
loplugin: unnecessary destructor vbahelper..vcl
Change-Id: I6b7800d4a456391251168f7923a1ec7a5ca9efc9 Reviewed-on: https://gerrit.libreoffice.org/33577 Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl/source/window/popupmenuwindow.cxx')
-rw-r--r--vcl/source/window/popupmenuwindow.cxx5
1 files changed, 0 insertions, 5 deletions
diff --git a/vcl/source/window/popupmenuwindow.cxx b/vcl/source/window/popupmenuwindow.cxx
index 310d7550b202..d8cd337a1c91 100644
--- a/vcl/source/window/popupmenuwindow.cxx
+++ b/vcl/source/window/popupmenuwindow.cxx
@@ -26,7 +26,6 @@ struct PopupMenuFloatingWindow::ImplData
sal_uInt16 mnMenuStackLevel; // Store the stack level of a popup menu. 0 = top-level menu.
ImplData();
- ~ImplData();
};
PopupMenuFloatingWindow::ImplData::ImplData() :
@@ -34,10 +33,6 @@ PopupMenuFloatingWindow::ImplData::ImplData() :
{
}
-PopupMenuFloatingWindow::ImplData::~ImplData()
-{
-}
-
PopupMenuFloatingWindow::PopupMenuFloatingWindow( vcl::Window* pParent ) :
FloatingWindow(pParent, WB_SYSTEMFLOATWIN | WB_SYSTEMWINDOW | WB_NOBORDER ),
mpImplData(new ImplData)