summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-10-12 12:54:30 +0200
committerNoel Grandin <noel@peralex.com>2015-10-12 13:00:24 +0200
commit9c67eebf79084e51ef2f0fd5a45dc34bd64e1d49 (patch)
treea06870183c79634d23a58cdabdecaabab5459933
parent3c99f8500f657ed84b316390d5175a6f5e56bc69 (diff)
no need to explicitly specify these destructors
the compiler will do it for us Change-Id: I6ea04aa32ee3357d01a4dbfc58ebbaedff38c0ab
-rw-r--r--sw/source/ui/dialog/swdlgfact.hxx4
1 files changed, 0 insertions, 4 deletions
diff --git a/sw/source/ui/dialog/swdlgfact.hxx b/sw/source/ui/dialog/swdlgfact.hxx
index fa8f1044410c..8eb5fac680d6 100644
--- a/sw/source/ui/dialog/swdlgfact.hxx
+++ b/sw/source/ui/dialog/swdlgfact.hxx
@@ -53,13 +53,9 @@ public: \
explicit Class( DialogClass* p) \
: pDlg(p) \
{} \
- virtual ~Class(); \
virtual short Execute() SAL_OVERRIDE ;
#define IMPL_ABSTDLG_BASE(Class) \
-Class::~Class() \
-{ \
-} \
short Class::Execute() \
{ \
return pDlg->Execute(); \