From 3fdd4f069d5436cf39708004af7fda8175fbc4c2 Mon Sep 17 00:00:00 2001 From: Kohei Yoshida Date: Tue, 8 Jul 2014 22:44:11 -0400 Subject: Explicit virtual dtor needed for auto_ptr member for MSVC. Else it won't build. Change-Id: I6d857ffc7a444abaf477ee820e577757287a707c --- include/formula/formula.hxx | 3 +++ 1 file changed, 3 insertions(+) (limited to 'include/formula') diff --git a/include/formula/formula.hxx b/include/formula/formula.hxx index 28ecc1e5d5a7..6aa3f4d4ed15 100644 --- a/include/formula/formula.hxx +++ b/include/formula/formula.hxx @@ -56,6 +56,8 @@ public: , bool _bSupportMatrix ,IFunctionManager* _pFunctionMgr ,IControlReferenceHandler* _pDlg = NULL ); + virtual ~FormulaModalDialog(); + private: SAL_WNODEPRECATED_DECLARATIONS_PUSH ::std::auto_ptr m_pImpl; @@ -95,6 +97,7 @@ public: , bool _bSupportMatrix , IFunctionManager* _pFunctionMgr , IControlReferenceHandler* _pDlg = NULL ); + virtual ~FormulaDlg(); private: SAL_WNODEPRECATED_DECLARATIONS_PUSH ::std::auto_ptr m_pImpl; -- cgit