Revision 24724 branches/v10/extensions/extJCRS/src/org/gvsig/crs/gui/panels/CrsRecentsPanel.java

View differences:

CrsRecentsPanel.java
136 136
	 */
137 137
	public JTable getJTable() {
138 138
		if (jTable == null) {
139
			String[] columnNames= {PluginServices.getText(this,"fuente"),
139
			String[] columnNames= {PluginServices.getText(this,"repository"),
140 140
					PluginServices.getText(this,"codigo"),
141 141
					PluginServices.getText(this,"nombre")};
142 142
			Object[][]data = {};			
......
169 169
			for (int i = 0; i < 3; i++) {
170 170
			    column = jTable.getColumnModel().getColumn(i);
171 171
			    if (i == 0) {
172
			        column.setPreferredWidth(60); //code column is shorter			     	
172
			        column.setPreferredWidth(80); //code column is shorter			     	
173 173
			    }else if (i == 2) {
174 174
			    	column.setPreferredWidth(275);
175 175
			    }
176 176
			    else {			    
177
			        column.setPreferredWidth(160);
177
			        column.setPreferredWidth(140);
178 178
			    }
179 179
			}	
180 180
		}

Also available in: Unified diff