more renaming fixes
[org.ibex.core.git] / src / org / ibex / plat / Darwin.java
index 09c8a65..289ce51 100644 (file)
@@ -6,7 +6,6 @@ package org.ibex.plat;
 import gnu.gcj.RawData;
 import org.ibex.util.*;
 import org.ibex.js.*;
-import org.ibex.*;
 import org.ibex.graphics.*;
 import org.ibex.core.*;
 import org.ibex.net.*;
@@ -96,7 +95,7 @@ public class Darwin extends POSIX {
     
     protected Scheduler _getScheduler() { return new DarwinScheduler(); }
     protected native void runApplicationEventLoop();
-    private class DarwinScheduler extends org.ibex.Scheduler {
+    private class DarwinScheduler extends org.ibex.util.Scheduler {
         public void run() {
             new Thread() { public void run() { defaultRun(); } }.start();
             runApplicationEventLoop();
@@ -333,7 +332,7 @@ public class Darwin extends POSIX {
         else
             return /*new QZCarbonPicture(data,w,h);*/ null;
     }
-    protected org.ibex.Font.Glyph  _createGlyph(org.ibex.Font f, char c) {
+    protected org.ibex.graphics.Font.Glyph  _createGlyph(org.ibex.graphics.Font f, char c) {
         if(openGL != null)
             return openGL._createGlyph(f, c);
         else