Changeset 22050 in osm for applications/editors/josm/plugins
- Timestamp:
- 2010-06-27T23:23:00+02:00 (14 years ago)
- Location:
- applications/editors/josm/plugins/alignways
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/alignways/build.xml
r21706 r22050 31 31 32 32 <!-- enter the SVN commit message --> 33 <property name="commit.message" value=" Initial release" />33 <property name="commit.message" value="Update to josm latest" /> 34 34 <!-- 35 35 enter the *lowest* JOSM version this plugin is currently compatible -
applications/editors/josm/plugins/alignways/src/org/openstreetmap/josm/plugins/alignways/AlignWaysRotateCommand.java
r21624 r22050 14 14 import javax.swing.JLabel; 15 15 import javax.swing.SwingConstants; 16 import javax.swing.tree.DefaultMutableTreeNode;17 import javax.swing.tree.MutableTreeNode;18 16 19 17 import org.openstreetmap.josm.Main; … … 168 166 169 167 @Override 170 public MutableTreeNode description() { 171 return new DefaultMutableTreeNode( 172 new JLabel(tr("Align way segment"), ImageProvider.get( 173 "", "alignways"), SwingConstants.HORIZONTAL)); 168 public JLabel getDescription() { 169 return new JLabel(tr("Align way segment"), ImageProvider.get( 170 "", "alignways"), SwingConstants.HORIZONTAL); 174 171 } 175 172
Note:
See TracChangeset
for help on using the changeset viewer.