diff options
author | Noel Grandin <noel@peralex.com> | 2015-10-12 12:54:30 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-10-12 13:00:24 +0200 |
commit | 9c67eebf79084e51ef2f0fd5a45dc34bd64e1d49 (patch) | |
tree | a06870183c79634d23a58cdabdecaabab5459933 /sw | |
parent | 3c99f8500f657ed84b316390d5175a6f5e56bc69 (diff) |
no need to explicitly specify these destructors
the compiler will do it for us
Change-Id: I6ea04aa32ee3357d01a4dbfc58ebbaedff38c0ab
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/ui/dialog/swdlgfact.hxx | 4 |
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(); \ |