This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository tutti. See http://git.codelutin.com/tutti.git commit 96612623ad2ea8472c871076039442614ab081f7 Author: Tony CHEMIT <chemit@codelutin.com> Date: Thu Jan 7 09:35:43 2016 +0100 Mettre les constantes en premier dans un test d'égalité --- .../content/operation/catches/benthos/create/CreateBenthosBatchUI.css | 4 ++-- .../content/operation/catches/species/create/CreateSpeciesBatchUI.css | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tutti-ui-swing/src/main/java/fr/ifremer/tutti/ui/swing/content/operation/catches/benthos/create/CreateBenthosBatchUI.css b/tutti-ui-swing/src/main/java/fr/ifremer/tutti/ui/swing/content/operation/catches/benthos/create/CreateBenthosBatchUI.css index edb712c..d13bdda 100644 --- a/tutti-ui-swing/src/main/java/fr/ifremer/tutti/ui/swing/content/operation/catches/benthos/create/CreateBenthosBatchUI.css +++ b/tutti-ui-swing/src/main/java/fr/ifremer/tutti/ui/swing/content/operation/catches/benthos/create/CreateBenthosBatchUI.css @@ -107,7 +107,7 @@ NumberEditor { text: "tutti.createBenthosBatch.field.batchCount"; toolTipText: "tutti.createBenthosBatch.field.batchCount.tip"; labelFor: {batchCountField}; - font-weight: { model.getSpeciesProtocolFrequencyMode() == CreateBenthosBatchUIModel.SpeciesProtocolFrequencyMode.COUNT ? "bold" : "normal" }; + font-weight: { CreateBenthosBatchUIModel.SpeciesProtocolFrequencyMode.COUNT == model.getSpeciesProtocolFrequencyMode() ? "bold" : "normal" }; _help: {"tutti.createBenthosBatch.field.batchCount.help"}; } @@ -194,7 +194,7 @@ NumberEditor { toolTipText: "tutti.createBenthosBatch.action.saveAndFrequencies.tip"; i18nMnemonic: "tutti.createBenthosBatch.action.saveAndFrequencies.mnemonic"; enabled: {model.isValid()}; - font-weight: { model.getSpeciesProtocolFrequencyMode() == CreateBenthosBatchUIModel.SpeciesProtocolFrequencyMode.MEASURE ? "bold" : "normal" }; + font-weight: { CreateBenthosBatchUIModel.SpeciesProtocolFrequencyMode.MEASURE == model.getSpeciesProtocolFrequencyMode() ? "bold" : "normal" }; _simpleAction: {fr.ifremer.tutti.ui.swing.content.operation.catches.benthos.create.actions.CreateBenthosBatchAndFrequenciesAction.class}; _help: {"tutti.createBenthosBatch.action.saveAndFrequencies.help"}; } diff --git a/tutti-ui-swing/src/main/java/fr/ifremer/tutti/ui/swing/content/operation/catches/species/create/CreateSpeciesBatchUI.css b/tutti-ui-swing/src/main/java/fr/ifremer/tutti/ui/swing/content/operation/catches/species/create/CreateSpeciesBatchUI.css index 0c57521..71b69cb 100644 --- a/tutti-ui-swing/src/main/java/fr/ifremer/tutti/ui/swing/content/operation/catches/species/create/CreateSpeciesBatchUI.css +++ b/tutti-ui-swing/src/main/java/fr/ifremer/tutti/ui/swing/content/operation/catches/species/create/CreateSpeciesBatchUI.css @@ -107,7 +107,7 @@ NumberEditor { text: "tutti.createSpeciesBatch.field.batchCount"; toolTipText: "tutti.createSpeciesBatch.field.batchCount.tip"; labelFor: {batchCountField}; - font-weight: { model.getSpeciesProtocolFrequencyMode() == CreateSpeciesBatchUIModel.SpeciesProtocolFrequencyMode.COUNT ? "bold" : "normal" }; + font-weight: { CreateSpeciesBatchUIModel.SpeciesProtocolFrequencyMode.COUNT == model.getSpeciesProtocolFrequencyMode() ? "bold" : "normal" }; _help: {"tutti.createSpeciesBatch.field.batchCount.help"}; } @@ -194,7 +194,7 @@ NumberEditor { toolTipText: "tutti.createSpeciesBatch.action.saveAndFrequencies.tip"; i18nMnemonic: "tutti.createSpeciesBatch.action.saveAndFrequencies.mnemonic"; enabled: {model.isValid()}; - font-weight: { model.getSpeciesProtocolFrequencyMode() == CreateSpeciesBatchUIModel.SpeciesProtocolFrequencyMode.MEASURE ? "bold" : "normal" }; + font-weight: { CreateSpeciesBatchUIModel.SpeciesProtocolFrequencyMode.MEASURE == model.getSpeciesProtocolFrequencyMode() ? "bold" : "normal" }; _simpleAction: {fr.ifremer.tutti.ui.swing.content.operation.catches.species.create.actions.CreateSpeciesBatchAndFrequenciesAction.class}; _help: {"tutti.createSpeciesBatch.action.saveAndFrequencies.help"}; } -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.