fix javadoc header
[fanfix.git] / src / jexer / TProgressBar.java
index 1cd950c9babed03fdbcfa1c013b00ec8215f2aaf..1f23531aeae06d514f878caf6cbf6d4928a8a6d8 100644 (file)
@@ -1,4 +1,4 @@
-/**
+/*
  * Jexer - Java Text User Interface
  *
  * License: LGPLv3 or later
@@ -120,12 +120,8 @@ public final class TProgressBar extends TWidget {
         final int width, final int value) {
 
         // Set parent and window
-        super(parent, false);
+        super(parent, false, x, y, width, 1);
 
-        setX(x);
-        setY(y);
-        setHeight(1);
-        setWidth(width);
         this.value = value;
     }