Changeset 27889 in osm
- Timestamp:
- 2012-02-19T19:28:11+01:00 (13 years ago)
- Location:
- applications/editors/josm/plugins/turnlanes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/turnlanes/build.xml
r27352 r27889 32 32 <property name="commit.message" value="Commit message"/> 33 33 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 34 <property name="plugin.main.version" value="4 394"/>34 <property name="plugin.main.version" value="4980"/> 35 35 <!-- 36 36 ************************************************ -
applications/editors/josm/plugins/turnlanes/src/org/openstreetmap/josm/plugins/turnlanes/model/GenericCommand.java
r26182 r27889 6 6 import java.util.Map; 7 7 import java.util.Map.Entry; 8 9 import javax.swing.JLabel;10 8 11 9 import org.openstreetmap.josm.command.Command; … … 64 62 65 63 @Override 66 public JLabel getDescription() { 67 return new JLabel(description, null, JLabel.HORIZONTAL);64 public JLabel getDescriptionText() { 65 return description; 68 66 } 69 67
Note:
See TracChangeset
for help on using the changeset viewer.