Skip to content
Snippets Groups Projects
Commit 4a909480 authored by Raphael GIRARDOT's avatar Raphael GIRARDOT
Browse files

code readapted to changes in underlying libraires

parent 71bc61c1
Branches
Tags
No related merge requests found
......@@ -63,14 +63,14 @@ public class SolutionTable extends NumberMatrixTable implements INumberTarget, T
@Override
public void mouseClicked(final MouseEvent arg0) {
if (arg0.getClickCount() == 2) {
final short index = (short) m_table.getRowHeaderTable().getSelectedRow();
final short index = (short) table.getRowHeaderTable().getSelectedRow();
updateAttributeValue(index);
}
}
};
m_table.addMouseListener(tableAdapter);
m_table.getRowHeaderTable().addMouseListener(rowHeaderAdapter);
table.addMouseListener(tableAdapter);
table.getRowHeaderTable().addMouseListener(rowHeaderAdapter);
}
@Override
......@@ -93,7 +93,7 @@ public class SolutionTable extends NumberMatrixTable implements INumberTarget, T
@Override
public void setSelectedRow(int selectedRow) {
try {
m_table.getRowHeaderTable().setRowSelectionInterval(selectedRow, selectedRow);
table.getRowHeaderTable().setRowSelectionInterval(selectedRow, selectedRow);
} catch (IllegalArgumentException iae) {
//
}
......@@ -110,6 +110,6 @@ public class SolutionTable extends NumberMatrixTable implements INumberTarget, T
}
public void setColumnControlVisible(boolean visible) {
m_table.setColumnControlVisible(visible);
table.setColumnControlVisible(visible);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment