Remove useless wxABI_VERSION checks in sources

They are only meaningful for headers, not when compiling the library
itself.
This commit is contained in:
Václav Slavík
2016-12-05 17:52:30 +01:00
parent 5a089901ef
commit 97330c2706
2 changed files with 0 additions and 4 deletions

View File

@@ -5117,12 +5117,10 @@ wxTextCtrl *wxGenericListCtrl::EditLabel(long item,
return m_mainWin->EditLabel( item, textControlClass ); return m_mainWin->EditLabel( item, textControlClass );
} }
#if wxABI_VERSION >= 30002
bool wxGenericListCtrl::EndEditLabel(bool cancel) bool wxGenericListCtrl::EndEditLabel(bool cancel)
{ {
return m_mainWin->EndEditLabel(cancel); return m_mainWin->EndEditLabel(cancel);
} }
#endif
wxTextCtrl *wxGenericListCtrl::GetEditControl() const wxTextCtrl *wxGenericListCtrl::GetEditControl() const
{ {

View File

@@ -553,7 +553,6 @@ void wxListCtrl::OnDblClick(wxMouseEvent& event)
event.Skip(); event.Skip();
} }
#if wxABI_VERSION >= 20801
void wxListCtrl::OnRightDown(wxMouseEvent& event) void wxListCtrl::OnRightDown(wxMouseEvent& event)
{ {
if (m_dbImpl) if (m_dbImpl)
@@ -636,7 +635,6 @@ void wxListCtrl::OnChar(wxKeyEvent& event)
} }
event.Skip(); event.Skip();
} }
#endif
bool wxListCtrl::Create(wxWindow *parent, bool wxListCtrl::Create(wxWindow *parent,
wxWindowID id, wxWindowID id,