Update of /cvsroot/fudaa/fudaa_devel/ebli/src/org/fudaa/ebli/calque
In directory sc8-pr-cvs1:/tmp/cvs-serv32411/ebli/src/org/fudaa/ebli/calque
Modified Files:
ZEbliFilleCalques.java
Log Message:
Modifs mineures
Index: ZEbliFilleCalques.java
===================================================================
RCS file: /cvsroot/fudaa/fudaa_devel/ebli/src/org/fudaa/ebli/calque/ZEbliFilleCalques.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** ZEbliFilleCalques.java 30 Jan 2003 17:27:39 -0000 1.2
--- ZEbliFilleCalques.java 21 Feb 2003 16:39:56 -0000 1.3
***************
*** 652,656 ****
public EbliState createState()
{
! return new EbliStateSelection.Ponctuelle(ZEbliFilleCalques.this, this);
}
};
--- 652,659 ----
public EbliState createState()
{
! return new EbliStateSelection.Ponctuelle(
! ZEbliFilleCalques.this.getCalqueSelection(),
! ZEbliFilleCalques.this.getArbreCalque(),
! this);
}
};
***************
*** 668,672 ****
public EbliState createState()
{
! return new EbliStateSelection.Rectangle(ZEbliFilleCalques.this, this);
}
};
--- 671,678 ----
public EbliState createState()
{
! return new EbliStateSelection.Rectangle(
! ZEbliFilleCalques.this.getCalqueSelection(),
! ZEbliFilleCalques.this.getArbreCalque()
! , this);
}
};
***************
*** 684,688 ****
public EbliState createState()
{
! return new EbliStateSelection.Polygone(ZEbliFilleCalques.this, this);
}
};
--- 690,697 ----
public EbliState createState()
{
! return new EbliStateSelection.Polygone(
! ZEbliFilleCalques.this.getCalqueSelection(),
! ZEbliFilleCalques.this.getArbreCalque(),
! this);
}
};
|