- Timestamp:
- 2016-07-12T21:38:23+02:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/conflict/tags/CombinePrimitiveResolverDialog.java
r10369 r10527 25 25 import javax.swing.AbstractAction; 26 26 import javax.swing.Action; 27 import javax.swing.JButton; 27 28 import javax.swing.JDialog; 28 29 import javax.swing.JLabel; … … 42 43 import org.openstreetmap.josm.gui.ConditionalOptionPaneUtil; 43 44 import org.openstreetmap.josm.gui.DefaultNameFormatter; 44 import org.openstreetmap.josm.gui.SideButton;45 45 import org.openstreetmap.josm.gui.help.ContextSensitiveHelpAction; 46 46 import org.openstreetmap.josm.gui.help.HelpUtil; … … 117 117 private ContextSensitiveHelpAction helpAction; 118 118 /** the apply button */ 119 private SideButton btnApply;119 private JButton btnApply; 120 120 121 121 /** … … 199 199 pnlTagConflictResolver.getModel().addPropertyChangeListener(applyAction); 200 200 pnlRelationMemberConflictResolver.getModel().addPropertyChangeListener(applyAction); 201 btnApply = new SideButton(applyAction);201 btnApply = new JButton(applyAction); 202 202 btnApply.setFocusable(true); 203 203 pnl.add(btnApply); … … 205 205 // -- cancel button 206 206 CancelAction cancelAction = new CancelAction(); 207 pnl.add(new SideButton(cancelAction));207 pnl.add(new JButton(cancelAction)); 208 208 209 209 // -- help button 210 210 helpAction = new ContextSensitiveHelpAction(); 211 pnl.add(new SideButton(helpAction));211 pnl.add(new JButton(helpAction)); 212 212 213 213 return pnl;
Note:
See TracChangeset
for help on using the changeset viewer.