tui: resize + src selection
[fanfix.git] / src / be / nikiroo / fanfix / reader / tui / TSizeConstraint.java
index 3baf1255892301f1421fc477bf9940d21bc66c73..859a6c35de170fd805a2d9e12b84850da02d97f5 100644 (file)
@@ -54,9 +54,9 @@ public class TSizeConstraint {
        }
 
        // coordinates < 0 = from the other side, x2 or y2 = 0 = max size
-       static void setSize(List<TSizeConstraint> list, TWidget child, Integer x1,
-                       Integer y1, Integer x2, Integer y2) {
-               list.add(new TSizeConstraint(child, x1, y1, x2, y2));
+       static void setSize(List<TSizeConstraint> sizeConstraints, TWidget child,
+                       Integer x1, Integer y1, Integer x2, Integer y2) {
+               sizeConstraints.add(new TSizeConstraint(child, x1, y1, x2, y2));
        }
 
        static void resize(List<TSizeConstraint> sizeConstraints) {