From e3ecad0ead8573cb1294e6b7b29d5260fb7e22ad Mon Sep 17 00:00:00 2001 From: boccioli_m Date: Mon, 8 Jun 2015 15:28:54 +0200 Subject: [PATCH] Closedown --- plugins/TestingList.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/TestingList.java b/plugins/TestingList.java index 212db23..692b237 100644 --- a/plugins/TestingList.java +++ b/plugins/TestingList.java @@ -114,7 +114,7 @@ public class TestingList extends Panel { } } } -ImageIcon icon = new ImageIcon(getClass().getResource("/icons/button_reload.png")); +ImageIcon icon = new ImageIcon(getClass().getResource("/icons/button_reload-16px.png")); jTable1.setValueAt(icon, rowD, COL_ICON); if(colT>0 && rowD>0){ @@ -209,9 +209,9 @@ jTable1.setValueAt(icon, rowD, COL_ICON); public void buildTable(){ String sDate = getNow(); - ImageIcon icon = new ImageIcon(getClass().getResource("/icons/button_play.png")); + ImageIcon icon = new ImageIcon(getClass().getResource("/icons/button_pause-16px.png")); DefaultTableModel model = (DefaultTableModel) jTable1.getModel(); - model.addRow(new Object[] {false, sDate, "LS", "Check Status", "No comm", "Pending", Color.BLUE}); + model.addRow(new Object[] {false, sDate, "LS", "Check Status", "No comm", "Pending", icon}); model.addRow(new Object[] {true, sDate, "RS", "Calibrate", "Calibration done", "Pending", icon}); model.addRow(new Object[] {false, sDate, "MWD", "Display Test", "Sequence terminated", "Pending", icon}); model.addRow(new Object[] {false, sDate, "FIXL", "Lamp Test", "Failure", "Pending", icon});