2003/12/27 01:03:55
[org.ibex.core.git] / src / org / xwt / plat / Darwin.java
index 14bdecb..8061723 100644 (file)
@@ -259,7 +259,7 @@ public class Darwin extends POSIX {
         
         
         // The blit_lock ensures the window size does not change through the entire blit operation.
-        public void render_() {
+        public void render() {
             blitLock();
             while(pendingResize) blitWait();
             if(needsReshape) {
@@ -270,7 +270,7 @@ public class Darwin extends POSIX {
                 Dirty(0,0,winWidth,winHeight);
                 //Dirty(0,0,getWidth(),getHeight());
             }
-            super.render_();
+            super.render();
             flush();
             blitUnlock();
         }