Add wxNOEXCEPT to all wxTextCtrl dtors.

Fix compilation with some compilers after r72978 which added wxNOEXCEPT to
wxTextCtrlBase dtor and wxTextCtrl dtor in wxMSW but not in all the other
ports.

See #14826.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@72984 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2012-11-19 11:53:49 +00:00
parent d180f4e007
commit 24f54e45dc
7 changed files with 7 additions and 7 deletions

View File

@@ -30,7 +30,7 @@ public:
{
Create(pParent, vId, rsValue, rPos, rSize, lStyle, rValidator, rsName);
}
virtual ~wxTextCtrl();
virtual ~wxTextCtrl() wxNOEXCEPT;
bool Create( wxWindow* pParent
,wxWindowID vId