Ignore:
Timestamp:
2010-08-20T13:34:48+02:00 (14 years ago)
Author:
malcolmh
Message:

release candidate

Location:
applications/editors/josm/plugins/toms/src/toms
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/toms/src/toms/dialogs/SmpDialogAction.java

    r22692 r22704  
    893893                        lM01StyleOfMark.setBounds(new Rectangle(5, 90, 148, 16));
    894894                        lM01StyleOfMark.setFont(new Font("Dialog", Font.PLAIN, 12));
    895                         lM01StyleOfMark.setText("Style:");
     895                        lM01StyleOfMark.setText("Shape:");
    896896
    897897                        lM01TypeOfMark = new JLabel();
  • applications/editors/josm/plugins/toms/src/toms/seamarks/buoys/Buoy.java

    r22683 r22704  
    155155                        setErrMsg(null);
    156156                } else {
    157                         setErrMsg("Als Periodendauer sind nur Zahlen erlaubt");
     157                        setErrMsg("Must be a number");
    158158                        dlg.tfM01RepeatTime.requestFocus();
    159159                }
     
    294294
    295295        protected void saveLightData(String colour) {
    296                 if (colour.compareTo("") == 0) {
     296                if (colour.equals("")) {
    297297                        return;
    298298                }
  • applications/editors/josm/plugins/toms/src/toms/seamarks/buoys/BuoyCard.java

    r22683 r22704  
    213213                        }
    214214
    215                         if (str.compareTo("white") == 0) {
     215                        if (str.equals("white")) {
    216216                                setFired(true);
    217217                                setLightColour("W");
     
    244244                        str = keys.get("seamark:buoy_cardinal:shape");
    245245
    246                         if (str.compareTo("pillar") == 0)
     246                        if (str.equals("pillar"))
    247247                                setStyleIndex(CARD_PILLAR);
    248                         else if (str.compareTo("spar") == 0)
     248                        else if (str.equals("spar"))
    249249                                setStyleIndex(CARD_SPAR);
    250250                        else
     
    254254                                str = keys.get("seamark:beacon_cardinal:shape");
    255255
    256                                 if (str.compareTo("tower") == 0)
     256                                if (str.equals("tower"))
    257257                                        setStyleIndex(CARD_TOWER);
    258258                                else
  • applications/editors/josm/plugins/toms/src/toms/seamarks/buoys/BuoyIsol.java

    r22692 r22704  
    233233                        str = keys.get("seamark:buoy_isolated_danger:shape");
    234234
    235                         if (str.compareTo("pillar") == 0)
     235                        if (str.equals("pillar"))
    236236                                setStyleIndex(ISOL_PILLAR);
    237                         else if (str.compareTo("spar") == 0)
     237                        else if (str.equals("spar"))
    238238                                setStyleIndex(ISOL_SPAR);
    239239                        else
     
    243243                                str = keys.get("seamark:beacon_isolated_danger:shape");
    244244
    245                                 if (str.compareTo("tower") == 0)
     245                                if (str.equals("tower"))
    246246                                        setStyleIndex(ISOL_TOWER);
    247247                                else
Note: See TracChangeset for help on using the changeset viewer.