- Timestamp:
- 2017-01-12T02:25:41+01:00 (8 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/gui
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/io/SaveLayersDialog.java
r11366 r11457 695 695 696 696 @Override 697 public void tableChanged(TableModelEvent arg0) {697 public void tableChanged(TableModelEvent e) { 698 698 boolean dis = model.getLayersToSave().isEmpty() && model.getLayersToUpload().isEmpty(); 699 699 if (saveAndProceedActionButton != null) { -
trunk/src/org/openstreetmap/josm/gui/layer/geoimage/CorrelateGpxWithImages.java
r11452 r11457 540 540 541 541 @Override 542 public void actionPerformed(ActionEvent a rg0) {542 public void actionPerformed(ActionEvent ae) { 543 543 // Construct the list of loaded GPX tracks 544 544 Collection<Layer> layerLst = Main.getLayerManager().getLayers(); -
trunk/src/org/openstreetmap/josm/gui/layer/geoimage/ShowThumbnailAction.java
r8658 r11457 36 36 /** 37 37 * This is called after the menu entry was selected. 38 * @param arg0action event38 * @param e action event 39 39 */ 40 40 @Override 41 public void actionPerformed(ActionEvent arg0) {41 public void actionPerformed(ActionEvent e) { 42 42 layer.setUseThumbs(!layer.isUseThumbs()); 43 43 Main.map.mapView.repaint(); -
trunk/src/org/openstreetmap/josm/gui/layer/gpx/ChooseTrackVisibilityAction.java
r11365 r11457 222 222 223 223 @Override 224 public void actionPerformed(ActionEvent a rg0) {224 public void actionPerformed(ActionEvent ae) { 225 225 final JPanel msg = new JPanel(new GridBagLayout()); 226 226 -
trunk/src/org/openstreetmap/josm/gui/widgets/VerticallyScrollablePanel.java
r6666 r11457 48 48 49 49 @Override 50 public int getScrollableBlockIncrement(Rectangle arg0, int arg1, int arg2) {50 public int getScrollableBlockIncrement(Rectangle visibleRect, int orientation, int direction) { 51 51 return 20; 52 52 }
Note:
See TracChangeset
for help on using the changeset viewer.