Changeset 28014 in osm for applications/editors/josm


Ignore:
Timestamp:
2012-03-08T10:48:43+01:00 (13 years ago)
Author:
akks
Message:

fixes due to core UrlLabel changes

Location:
applications/editors/josm/plugins
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/DirectUpload/build.xml

    r27852 r28014  
    2727<project name="DirectUpload" default="dist" basedir=".">
    2828    <property name="commit.message" value="applied JOSM Ticket 4498 (patch by ax) - oauth support for gpx upload (I accidentally committed parts of the path in [24236])"/>
    29     <property name="plugin.main.version" value="4980"/>
     29    <property name="plugin.main.version" value="5053"/>
    3030    <property name="josm" location="../../core/dist/josm-custom.jar"/>
    3131    <property name="plugin.dist.dir" value="../../dist"/>
  • applications/editors/josm/plugins/DirectUpload/src/org/openstreetmap/josm/plugins/DirectUpload/UploadDataGui.java

    r26509 r28014  
    132132        }
    133133        visibilityCombo.setSelectedItem(visibility.valueOf(Main.pref.get("directupload.visibility.last-used", visibility.PRIVATE.name())).description);
    134         UrlLabel visiUrl = new UrlLabel(tr("http://wiki.openstreetmap.org/wiki/Visibility_of_GPS_traces"), tr("(What does that mean?)"));
     134        UrlLabel visiUrl = new UrlLabel(tr("http://wiki.openstreetmap.org/wiki/Visibility_of_GPS_traces"), tr("(What does that mean?)"), 2);
    135135
    136136        // description
     
    168168
    169169        p.add(visibilityLabel, GBC.std().insets(0,10,0,0));
    170         p.add(visiUrl, GBC.eol().insets(0,10,0,0));
     170        p.add(visiUrl, GBC.eol().insets(5,10,0,0));
    171171        p.add(visibilityCombo, GBC.eol());
    172172
  • applications/editors/josm/plugins/addrinterpolation/build.xml

    r27852 r28014  
    2323<project name="AddrInterpolation" default="dist" basedir=".">
    2424    <property name="commit.message" value="Impoved Icon"/>
    25     <property name="plugin.main.version" value="4980"/>
     25    <property name="plugin.main.version" value="5053"/>
    2626    <!--
    2727      ************************************************
  • applications/editors/josm/plugins/addrinterpolation/src/org/openstreetmap/josm/plugins/AddrInterpolation/AddrInterpolationDialog.java

    r23420 r28014  
    312312
    313313        editControlsPane.add(new UrlLabel("http://wiki.openstreetmap.org/wiki/JOSM/Plugins/AddrInterpolation",
    314                 tr("More information about this feature")), c);
     314                tr("More information about this feature"),2), c);
    315315
    316316
  • applications/editors/josm/plugins/public_transport/build.xml

    r27886 r28014  
    2121      ** should not be necessary to change the following properties
    2222     -->
     23    <property name="plugin.main.version" value="5053"/>
    2324    <property name="josm" location="${josm.basedir}/core/dist/josm-custom.jar"/>
    2425    <property name="plugin.build.dir" value="build"/>
  • applications/editors/josm/plugins/public_transport/src/public_transport/RoutePatternAction.java

    r27842 r28014  
    5757import org.openstreetmap.josm.tools.GBC;
    5858import org.openstreetmap.josm.tools.Shortcut;
    59 import org.openstreetmap.josm.tools.UrlLabel;
    6059
    6160public class RoutePatternAction extends JosmAction {
Note: See TracChangeset for help on using the changeset viewer.