Subversion Repositories eFlore/Applications.coel

Compare Revisions

Ignore whitespace Rev 1338 → Rev 1337

/branches/v1.0-syrah/src/org/tela_botanica/client/vues/publication/PublicationForm.java
206,6 → 206,7
barreOutils.add(new Text(" ou "));
creerComboBoxPersonnesSaisies();
//personnesSaisiesComboBox = recherchePersonnesCombo;;
barreOutils.add(personnesSaisiesComboBox);
1156,7 → 1157,7
Iterator<Personne> itAuteurs = auteurs.iterator();
while (itAuteurs.hasNext()) {
Personne personneCourante = itAuteurs.next();
intituleAuteur += personneCourante.getNomComplet();
intituleAuteur += personneCourante.getNom().toUpperCase() + " " + personneCourante.getPrenom();
if (itAuteurs.hasNext()) {
intituleAuteur+=", ";
}