Use standard naming convention for wxQtListTextCtrl::OnMove()

This commit is contained in:
Vadim Zeitlin
2019-06-29 20:43:22 +02:00
parent 2ce16cba08
commit 66d596dd09

View File

@@ -37,10 +37,10 @@ public:
m_actualParent(actualParent),
m_moving(0)
{
Bind(wxEVT_MOVE, &wxQtListTextCtrl::onMove, this);
Bind(wxEVT_MOVE, &wxQtListTextCtrl::OnMove, this);
}
void onMove(wxMoveEvent &event)
void OnMove(wxMoveEvent &event)
{
// QWidget::move generates a QMoveEvent so we need to guard against
// reentrant calls.