*** Xew/Raster.h.orig Thu Dec 28 12:50:56 1995 --- Xew/Raster.h Tue Jan 30 10:18:26 1996 *************** *** 184,189 **** --- 184,200 ---- ); /* + ** XeRasterDisplay + ** call the expose method to refresh the window + */ + void XeRasterDisplay + ( + #if NeedFunctionPrototypes + Widget /* XeRaster Widget pointer */ + #endif + ); + + /* ** XeCreateRawImage ** Create empty raw image structure which has room for the ** specified number of channels. The new structure has reference *** Xew/Raster.c.orig Thu Dec 28 13:30:12 1995 --- Xew/Raster.c Tue Jan 30 10:20:16 1996 *************** *** 615,620 **** --- 615,633 ---- } /* + ** XeRasterDisplay + ** call the expose method to refresh the window + */ + void XeRasterDisplay(w) + Widget w; + { + XeRasterWidget r = (XeRasterWidget)w; + + if (IsRasterWidget(w)) + REDISPLAY(r, (XEvent *)NULL, (Region)0); + } + + /* ** XeCreateRawImage ** Create empty raw image structure which has room for the ** specified number of channels.