Use standard naming convention for wxQtListTextCtrl::OnMove()
This commit is contained in:
parent
2ce16cba08
commit
66d596dd09
1 changed files with 2 additions and 2 deletions
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue