From: Vadim Zeitlin Date: Tue, 20 Nov 2012 00:57:25 +0000 (+0000) Subject: Fix another compilation problem after wxNOEXCEPT introduction. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/e6a277032d99841a845192cddd62a2c6810122f2 Fix another compilation problem after wxNOEXCEPT introduction. Also add wxNOEXCEPT to wxTextCtrl dtor definition in wxMSW. See #14826. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@72992 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/textctrl.cpp b/src/msw/textctrl.cpp index 4245b58125..9fa201a931 100644 --- a/src/msw/textctrl.cpp +++ b/src/msw/textctrl.cpp @@ -229,7 +229,7 @@ void wxTextCtrl::Init() m_isNativeCaretShown = true; } -wxTextCtrl::~wxTextCtrl() +wxTextCtrl::~wxTextCtrl() wxNOEXCEPT { #if wxUSE_DRAG_AND_DROP && wxUSE_RICHEDIT if ( m_dropTarget == wxRICHTEXT_DEFAULT_DROPTARGET )