More compilation fixes after wxNOEXCEPT introduction.
This is a temporary change, r72984 and the following changes (see #14826) will probably be reverted soon anyhow, but for now at least fix wxGTK compilation. Closes #14837. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@72989 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -95,6 +95,8 @@ class WXDLLEXPORT wxTreeTextCtrl: public wxTextCtrl
|
|||||||
public:
|
public:
|
||||||
wxTreeTextCtrl(wxGenericTreeCtrl *owner, wxGenericTreeItem *item);
|
wxTreeTextCtrl(wxGenericTreeCtrl *owner, wxGenericTreeItem *item);
|
||||||
|
|
||||||
|
virtual ~wxTreeTextCtrl() wxNOEXCEPT {}
|
||||||
|
|
||||||
void EndEdit( bool discardChanges );
|
void EndEdit( bool discardChanges );
|
||||||
|
|
||||||
const wxGenericTreeItem* item() const { return m_itemEdited; }
|
const wxGenericTreeItem* item() const { return m_itemEdited; }
|
||||||
|
@@ -610,7 +610,7 @@ void wxTextCtrl::Init()
|
|||||||
m_anonymousMarkList = NULL;
|
m_anonymousMarkList = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
wxTextCtrl::~wxTextCtrl()
|
wxTextCtrl::~wxTextCtrl() wxNOEXCEPT
|
||||||
{
|
{
|
||||||
if (m_text)
|
if (m_text)
|
||||||
GTKDisconnect(m_text);
|
GTKDisconnect(m_text);
|
||||||
|
@@ -226,7 +226,7 @@ void wxTextCtrl::Init()
|
|||||||
m_vScrollbar = NULL;
|
m_vScrollbar = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
wxTextCtrl::~wxTextCtrl()
|
wxTextCtrl::~wxTextCtrl() wxNOEXCEPT
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -764,7 +764,7 @@ bool wxTextCtrl::Create(wxWindow *parent,
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
wxTextCtrl::~wxTextCtrl()
|
wxTextCtrl::~wxTextCtrl() wxNOEXCEPT
|
||||||
{
|
{
|
||||||
delete m_cmdProcessor;
|
delete m_cmdProcessor;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user