Suppressed warnings where the thing warned about is intentional
[Mograsim.git] / LogicUI / src / era / mi / gui / model / components / GUIOrGate.java
index df64bba..a732509 100644 (file)
@@ -2,11 +2,11 @@ package era.mi.gui.model.components;
 
 import era.mi.gui.model.ViewModel;
 
-public class GUIOrGate extends RectangularShapedGUIGate
+public class GUIOrGate extends SimpleRectangularGUIGate
 {
-       public GUIOrGate(ViewModel model)
+       public GUIOrGate(ViewModel model, int logicWidth)
        {
-               super(model, "\u22651", false);// ">=1"
+               super(model, logicWidth, "\u22651", false);// ">=1"
                setInputCount(2);
        }
 }
\ No newline at end of file