|
From: <de...@us...> - 2003-09-09 04:09:48
|
Update of /cvsroot/fudaa/fudaa_devel/fudaa/src/org/fudaa/fudaa/lido/editor
In directory sc8-pr-cvs1:/tmp/cvs-serv23942/editor
Modified Files:
LidoProfilEditor.java
Log Message:
Correction bogue 801164
Index: LidoProfilEditor.java
===================================================================
RCS file: /cvsroot/fudaa/fudaa_devel/fudaa/src/org/fudaa/fudaa/lido/editor/LidoProfilEditor.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** LidoProfilEditor.java 4 Jul 2003 15:46:49 -0000 1.7
--- LidoProfilEditor.java 8 Sep 2003 08:00:38 -0000 1.8
***************
*** 30,35 ****
import java.util.*;
-
-
// ATTENTION: On ne gere ici que le cas de profils entres par points!!
// prevoir la gestion par largeurs ou transformer automatiquement en
--- 30,33 ----
***************
*** 40,57 ****
* @author Axel von Arnim
[...1535 lines suppressed...]
! if (graphe_ == null)
! return 0;
return 1;
}
!
! public int print(Graphics _g, PageFormat _format, int _page) {
! if (graphe_ == null)
! return Printable.NO_SUCH_PAGE;
graphe_.setName(getTitle());
! return graphe_.print(_g, _format, _page);
}
! public BuInformationsDocument getInformationsDocument() {
! return p_.getInformationsDocument();
! }
!
! protected boolean isObjectModificationImportant(Object o) {
! return (o == profil_);
}
}
|