Fix to parser.y to make it compile with makefile.unx; wxFileConfig
adds a / to user path if necessary; OGL sample cleans itself up; wxLog fixes in app.cpp git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1002 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -2217,6 +2217,30 @@ void wxCanvasInputEvent (Widget drawingArea, XtPointer data, XmDrawingAreaCallba
|
||||
|
||||
local_event = *(cbs->event); // We must keep a copy!
|
||||
|
||||
/*
|
||||
switch (local_event.xany.type)
|
||||
{
|
||||
case EnterNotify:
|
||||
cout << "EnterNotify\n";
|
||||
break;
|
||||
case LeaveNotify:
|
||||
cout << "LeaveNotify\n";
|
||||
break;
|
||||
case ButtonPress:
|
||||
cout << "ButtonPress\n";
|
||||
break;
|
||||
case ButtonRelease:
|
||||
cout << "ButtonRelease\n";
|
||||
break;
|
||||
case MotionNotify:
|
||||
cout << "MotionNotify\n";
|
||||
break;
|
||||
default:
|
||||
cout << "Something else\n";
|
||||
break;
|
||||
}
|
||||
*/
|
||||
|
||||
switch (local_event.xany.type)
|
||||
{
|
||||
case EnterNotify:
|
||||
|
Reference in New Issue
Block a user