Revision 37582

View differences:

branches/v2_0_0_prep/extensions/org.gvsig.installer/org.gvsig.installer.swing/org.gvsig.installer.swing.impl/src/main/java/org/gvsig/installer/swing/impl/execution/panel/renderers/InstallStatusCellRenderer.java
76 76
            return check;
77 77

  
78 78
        case TO_INSTALL:
79
            icon = new ImageIcon("/home/nfrancisco/Imatges/to_install.png");
79
        	resource = this.getClass().getResource("/images/toInstall.png");
80
            icon = new ImageIcon(resource);
80 81
            check.setIcon(icon);
81 82
            check.setToolTipText("_checked_to_install");
82 83
            return check;
83 84

  
84 85
        case INSTALLED_NOT_INSTALLABLE:
85
            icon =
86
                new ImageIcon(
87
                    "/home/nfrancisco/Imatges/installedNotInstallable.png");
86
        	resource = this.getClass().getResource("/images/installedNotInstallable.png");
87
            icon = new ImageIcon(resource);
88 88
            check.setIcon(icon);
89 89
            check.setToolTipText("_already_installed. _not_installable");
90 90
            return check;

Also available in: Unified diff