From 66d596dd098df2971e2c15e4ebafa029f151cbc5 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sat, 29 Jun 2019 20:43:22 +0200 Subject: [PATCH] Use standard naming convention for wxQtListTextCtrl::OnMove() --- include/wx/qt/private/treeitemfactory.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/wx/qt/private/treeitemfactory.h b/include/wx/qt/private/treeitemfactory.h index 42ea7e1abf..c15cf19d58 100644 --- a/include/wx/qt/private/treeitemfactory.h +++ b/include/wx/qt/private/treeitemfactory.h @@ -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.