egcs c++ would not compile xwin.cc

This commit is contained in:
ho 1999-06-26 12:04:16 +00:00
parent b4c14483ec
commit e4a5bcfa48

View File

@ -0,0 +1,15 @@
--- xwin.cc.orig Sat Jun 26 13:43:54 1999
+++ xwin.cc Sat Jun 26 13:42:38 1999
@@ -53,9 +53,9 @@
// Set up the default Events
events_ = NULL;
- addEvent( new Event( this, ConfigureNotify, &configureEvent ) );
- addEvent( new Event( this, ClientMessage, &deleteEvent ) );
- addEvent( new Event( this, MappingNotify, &mappingNotify ) );
+ addEvent( new Event( this, ConfigureNotify, &XWin::configureEvent ) );
+ addEvent( new Event( this, ClientMessage, &XWin::deleteEvent ) );
+ addEvent( new Event( this, MappingNotify, &XWin::mappingNotify ) );
//openDisplay(); // Done explicitly in xosview.cc.
}