diff Gui/wm/ws.c @ 8058:9246adcf95f0

cosmetic
author pontscho
date Sat, 02 Nov 2002 20:10:18 +0000
parents 4154b3126927
children 851e974e6eaa
line wrap: on
line diff
--- a/Gui/wm/ws.c	Sat Nov 02 19:59:40 2002 +0000
+++ b/Gui/wm/ws.c	Sat Nov 02 20:10:18 2002 +0000
@@ -609,12 +609,12 @@
          }
 expose:
         wsWindowList[l]->State=i;
-        if ( wsWindowList[l]->ReDraw ) wsWindowList[l]->ReDraw( wsDisplay,Event->xany.window );
+        if ( wsWindowList[l]->ReDraw ) wsWindowList[l]->ReDraw();
         break;
 
    case Expose:
         wsWindowList[l]->State=wsWindowExpose;
-        if ( ( wsWindowList[l]->ReDraw )&&( !Event->xexpose.count ) ) wsWindowList[l]->ReDraw( wsDisplay,Event->xany.window );
+        if ( ( wsWindowList[l]->ReDraw )&&( !Event->xexpose.count ) ) wsWindowList[l]->ReDraw();
         break;
 
    case ConfigureNotify:
@@ -915,7 +915,7 @@
  if ( win->ReDraw )
   {
    win->State=wsWindowExpose;
-   win->ReDraw( wsDisplay,win->WindowID );
+   win->ReDraw();
    XFlush( wsDisplay );
   }
 }