Subversion Repository Public Repository

litesoft

Diff Revisions 820 vs 821 for /trunk/Java/core/jvm1.5/src/org/litesoft/render/MockContainer.java

Diff revisions: vs.
  @@ -1,8 +1,8 @@
1 1 // This Source Code is in the Public Domain per: http://litesoft.org/License.txt
2 2 package org.litesoft.render;
3 3
4 + import org.litesoft.core.typeutils.*;
4 5 import org.litesoft.core.util.*;
5 - import org.litesoft.util.*;
6 6
7 7 /**
8 8 * Firefox Containers can lie / change their minds. Specifically:
  @@ -40,13 +40,13 @@
40 40
41 41 protected final void LLsetDecorationSizeX( int pDecorationSizeX )
42 42 {
43 - mDecorationSizeX = Utils.assertNotNegative( "DecorationSizeX", pDecorationSizeX );
43 + mDecorationSizeX = Integers.assertNonNegative( "DecorationSizeX", pDecorationSizeX );
44 44 changedPosOrSize();
45 45 }
46 46
47 47 protected final void LLsetDecorationSizeY( int pDecorationSizeY )
48 48 {
49 - mDecorationSizeY = Utils.assertNotNegative( "DecorationSizeY", pDecorationSizeY );
49 + mDecorationSizeY = Integers.assertNonNegative( "DecorationSizeY", pDecorationSizeY );
50 50 changedPosOrSize();
51 51 }
52 52