Changeset 13071 in josm for trunk/src/org
- Timestamp:
- 2017-11-02T13:36:17+01:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/io/UploadSelectionDialog.java
r12678 r13071 21 21 import javax.swing.Action; 22 22 import javax.swing.BorderFactory; 23 import javax.swing.JButton; 23 24 import javax.swing.JDialog; 24 25 import javax.swing.JLabel; … … 36 37 import org.openstreetmap.josm.data.osm.OsmPrimitiveType; 37 38 import org.openstreetmap.josm.gui.OsmPrimitivRenderer; 38 import org.openstreetmap.josm.gui.SideButton;39 39 import org.openstreetmap.josm.gui.help.ContextSensitiveHelpAction; 40 40 import org.openstreetmap.josm.gui.help.HelpUtil; … … 55 55 private JSplitPane spLists; 56 56 private boolean canceled; 57 private SideButton btnContinue;57 private JButton btnContinue; 58 58 59 59 /** … … 89 89 JPanel pnl = new JPanel(new FlowLayout()); 90 90 ContinueAction continueAction = new ContinueAction(); 91 btnContinue = new SideButton(continueAction);91 btnContinue = new JButton(continueAction); 92 92 pnl.add(btnContinue); 93 93 btnContinue.setFocusable(true); … … 95 95 lstSelectedPrimitives.getSelectionModel().addListSelectionListener(continueAction); 96 96 97 pnl.add(new SideButton(new CancelAction()));98 pnl.add(new SideButton(new ContextSensitiveHelpAction(HelpUtil.ht("/Dialog/UploadSelection"))));97 pnl.add(new JButton(new CancelAction())); 98 pnl.add(new JButton(new ContextSensitiveHelpAction(HelpUtil.ht("/Dialog/UploadSelection")))); 99 99 return pnl; 100 100 }
Note:
See TracChangeset
for help on using the changeset viewer.