summaryrefslogtreecommitdiff
path: root/basctl
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2016-08-30 14:26:19 +0100
committerCaolán McNamara <caolanm@redhat.com>2016-08-30 19:26:41 +0100
commita7b18aaa46c225d3546ad52aab0c460092c8edb0 (patch)
treebcb71a8b13fc0a6d8ea581556a0bd8f21c0f1b3d /basctl
parent2b8b8740f211a649a358fbe2406cae12e9621a77 (diff)
no point in these dtors being virtual
nothing inherits from these classes Change-Id: Ic887ac8a046b8697e310e19b6e7fdf9efae8f074
Diffstat (limited to 'basctl')
-rw-r--r--basctl/source/basicide/bastype2.cxx5
-rw-r--r--basctl/source/inc/bastype2.hxx1
2 files changed, 0 insertions, 6 deletions
diff --git a/basctl/source/basicide/bastype2.cxx b/basctl/source/basicide/bastype2.cxx
index 3fcaae459233..af5ab344d9dc 100644
--- a/basctl/source/basicide/bastype2.cxx
+++ b/basctl/source/basicide/bastype2.cxx
@@ -157,12 +157,7 @@ EntryDescriptor::EntryDescriptor (
OSL_ENSURE( m_aDocument.isValid(), "EntryDescriptor::EntryDescriptor: invalid document!" );
}
-EntryDescriptor::~EntryDescriptor()
-{ }
-
// TreeListBox
-
-
TreeListBox::TreeListBox (vcl::Window* pParent, ResId const& rRes)
: SvTreeListBox( pParent, IDEResId( sal::static_int_cast<sal_uInt16>( rRes.GetId() ) ) )
, m_aNotifier( *this )
diff --git a/basctl/source/inc/bastype2.hxx b/basctl/source/inc/bastype2.hxx
index d8f17d8109a6..fd092f24b82a 100644
--- a/basctl/source/inc/bastype2.hxx
+++ b/basctl/source/inc/bastype2.hxx
@@ -139,7 +139,6 @@ public:
OUString const& rMethodName,
EntryType eType
);
- virtual ~EntryDescriptor ();
ScriptDocument const& GetDocument() const { return m_aDocument; }