Changeset 6890 in josm for trunk/src/org/openstreetmap/josm/gui/download
- Timestamp:
- 2014-02-27T02:50:12+01:00 (13 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/gui/download
- Files:
-
- 4 edited
-
BookmarkSelection.java (modified) (2 diffs)
-
DownloadDialog.java (modified) (2 diffs)
-
PlaceSelection.java (modified) (2 diffs)
-
TileSelection.java (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/download/BookmarkSelection.java
r6883 r6890 224 224 bookmarks.save(); 225 225 } 226 protected void updateEnabledState() { 226 227 protected final void updateEnabledState() { 227 228 setEnabled(bookmarks.getSelectedIndices().length > 0); 228 229 } … … 261 262 } 262 263 } 263 protected void updateEnabledState() { 264 265 protected final void updateEnabledState() { 264 266 setEnabled(bookmarks.getSelectedIndices().length == 1); 265 267 } 268 266 269 @Override 267 270 public void valueChanged(ListSelectionEvent e) { -
trunk/src/org/openstreetmap/josm/gui/download/DownloadDialog.java
r6883 r6890 86 86 } 87 87 88 protected JPanel buildMainPanel() { 88 protected final JPanel buildMainPanel() { 89 89 JPanel pnl = new JPanel(); 90 90 pnl.setLayout(new GridBagLayout()); … … 163 163 } 164 164 165 protected JPanel buildButtonPanel() { 165 protected final JPanel buildButtonPanel() { 166 166 JPanel pnl = new JPanel(); 167 167 pnl.setLayout(new FlowLayout()); -
trunk/src/org/openstreetmap/josm/gui/download/PlaceSelection.java
r6883 r6890 299 299 } 300 300 301 protected void updateEnabledState() { 301 protected final void updateEnabledState() { 302 302 setEnabled(cbSearchExpression.getText().trim().length() > 0); 303 303 } … … 427 427 TableColumn col3 = null; 428 428 TableColumn col4 = null; 429 protected void createColumns() { 429 protected final void createColumns() { 430 430 TableColumn col = null; 431 431 NamedResultCellRenderer renderer = new NamedResultCellRenderer(); -
trunk/src/org/openstreetmap/josm/gui/download/TileSelection.java
r6830 r6890 22 22 private DownloadDialog parent; 23 23 24 protected void build() { 24 protected final void build() { 25 25 chooser = new TileSelectionBBoxChooser(); 26 26 chooser.addPropertyChangeListener(this);
Note:
See TracChangeset
for help on using the changeset viewer.
