Author: echatellier Date: 2012-07-18 11:53:12 +0200 (Wed, 18 Jul 2012) New Revision: 1021 Url: http://forge.codelutin.com/repositories/revision/coser/1021 Log: Misc fix Modified: trunk/coser-ui/src/main/java/fr/ifremer/coser/ui/control/ControlHandler.java trunk/coser-ui/src/main/java/fr/ifremer/coser/ui/control/ControlView.jaxx Modified: trunk/coser-ui/src/main/java/fr/ifremer/coser/ui/control/ControlHandler.java =================================================================== --- trunk/coser-ui/src/main/java/fr/ifremer/coser/ui/control/ControlHandler.java 2012-07-18 08:29:15 UTC (rev 1020) +++ trunk/coser-ui/src/main/java/fr/ifremer/coser/ui/control/ControlHandler.java 2012-07-18 09:53:12 UTC (rev 1021) @@ -3,7 +3,7 @@ * $Id$ * $HeadURL$ * %% - * Copyright (C) 2010 Ifremer, Codelutin, Chatellier Eric + * Copyright (C) 2010 - 2012 Ifremer, Codelutin, Chatellier Eric * %% * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as @@ -390,7 +390,6 @@ final ControlService validationService = view.getContextValue(ControlService.class); final Project project = view.getContextValue(Project.class); - //final Category category = (Category)view.getCategoryComboBox().getSelectedItem(); final CoserProgressBar progressBar = view.getCheckProgressBar(); SwingWorker<List<ControlError>, Void> task = new SwingWorker<List<ControlError>, Void>() { @@ -420,7 +419,7 @@ view.setContextValue(charts, "CompareCatchLengthGraph"); view.getCompareNumberCatchLengthButton().setEnabled(true); - // hack parce que impossible de faire un faire + // hack parce que impossible à faire // sans que les colonnes soit redimentionnées view.getGlobalControlErrorTable().setAutoCreateColumnsFromModel(false); @@ -562,7 +561,7 @@ * @param event mouse event * @see DiffCatchLengthControlError */ - public void globalErrorTableMouseCLicked(final ControlView controlView, MouseEvent event) { + public void globalErrorTableMouseClicked(final ControlView controlView, MouseEvent event) { int eventButton = event.getButton(); Modified: trunk/coser-ui/src/main/java/fr/ifremer/coser/ui/control/ControlView.jaxx =================================================================== --- trunk/coser-ui/src/main/java/fr/ifremer/coser/ui/control/ControlView.jaxx 2012-07-18 08:29:15 UTC (rev 1020) +++ trunk/coser-ui/src/main/java/fr/ifremer/coser/ui/control/ControlView.jaxx 2012-07-18 09:53:12 UTC (rev 1021) @@ -163,7 +163,7 @@ <JXTreeTable id='globalControlErrorTable' treeTableModel="{globalControlErrorModel}" rootVisible="false" showsRootHandles="true" treeCellRenderer="{new ControlErrorTreeRenderer()}" - onMouseClicked="getHandler().globalErrorTableMouseCLicked(this, event)" + onMouseClicked="getHandler().globalErrorTableMouseClicked(this, event)" selectionMode="{ListSelectionModel.SINGLE_SELECTION}" /> <javax.swing.tree.TreeSelectionModel id="globalControlErrorSelectionModel" javaBean="globalControlErrorTable.getTreeSelectionModel()"
participants (1)
-
echatellier@users.forge.codelutin.com