Subversion Repositories eFlore/Applications.del

Compare Revisions

Ignore whitespace Rev 1865 → Rev 1866

/trunk/src/org/tela_botanica/del/client/vues/pictoflora/resultats/ResultatPictofloraPresenteur.java
21,6 → 21,7
import org.tela_botanica.del.client.vues.pictoflora.resultats.images.ImagePresenteur;
import org.tela_botanica.del.client.vues.pictoflora.resultats.images.ImageVue;
 
import com.google.gwt.core.shared.GWT;
import com.google.gwt.dom.client.NodeList;
import com.google.gwt.dom.client.OptionElement;
import com.google.gwt.dom.client.SelectElement;
152,14 → 153,22
private void initialiserAPartirInfosCache() {
InformationsRecherche infos = CacheClient.getInstance().getInformationsRechercheImage();
if (infos.getTriParDate() != ModeTri.PAS_DE_TRI) {
triCourantDate = infos.getTriParDate();
mettreAJourAffichageTriDate();
}
if (infos.getTriParMoyenneArithmetique() != ModeTri.PAS_DE_TRI) {
triCourantMoyenneArithmetique = infos.getTriParMoyenneArithmetique();
mettreAJourAffichageTriMoyenneArithmetique();
}
if (infos.getTriParNbPoints() != ModeTri.PAS_DE_TRI) {
triCourantPoints = infos.getTriParNbPoints();
mettreAJourAffichageTriPoints();
}
if (infos.getTriParNbTags() != ModeTri.PAS_DE_TRI) {
triCourantTag = infos.getTriParNbTags();
mettreAjourAffichageTriTag();
}
}