Fix the recently broken test in the text sample

Correct the text broken by f137753f28 (thanks
buildbot and clang for the warning).
This commit is contained in:
Vadim Zeitlin 2015-09-23 02:40:47 +02:00
parent 81c6c6eeed
commit 83659d5d1d

View File

@ -776,7 +776,7 @@ void MyTextCtrl::OnMouseEvent(wxMouseEvent& ev)
if ( !ms_logMouse )
return;
if ( !ev.GetEventType() != wxEVT_MOTION )
if ( ev.GetEventType() != wxEVT_MOTION )
{
wxString msg;
if ( ev.Entering() )