Use standard naming convention for wxQtListTextCtrl::OnMove()
This commit is contained in:
@@ -37,10 +37,10 @@ public:
|
|||||||
m_actualParent(actualParent),
|
m_actualParent(actualParent),
|
||||||
m_moving(0)
|
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
|
// QWidget::move generates a QMoveEvent so we need to guard against
|
||||||
// reentrant calls.
|
// reentrant calls.
|
||||||
|
Reference in New Issue
Block a user