Changeset 22563 in osm


Ignore:
Timestamp:
2010-08-04T12:07:45+02:00 (14 years ago)
Author:
malcolmh
Message:

corrected safe water keys

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

Legend:

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

    r22561 r22563  
    581581
    582582                        // Test buoy_safewater
    583                         if (keys.containsKey("seamark:buoy_safewater:shape") == true) {
    584 
    585                                 if (keys.containsKey("seamark:buoy_safewater:colour") == false) {
     583                        if (keys.containsKey("seamark:buoy_water:shape") == true) {
     584
     585                                if (keys.containsKey("seamark:buoy_safe_water:colour") == false) {
    586586                                        buoy = new BuoyUkn(this, "Parse-Error: No colour set");
    587587                                        buoy.setNode(node);
     
    589589                                }
    590590
    591                                 str = keys.get("seamark:buoy_safewater:colour");
     591                                str = keys.get("seamark:buoy_safe_water:colour");
    592592                                if (str.compareTo("red;white") != 0) {
    593593                                        buoy = new BuoyUkn(this, "Parse-Error: Invalid colour");
  • applications/editors/josm/plugins/toms/src/toms/seamarks/buoys/BuoySaw.java

    r22561 r22563  
    109109                }
    110110
    111                 super.saveSign("buoy_safewater");
     111                super.saveSign("buoy_safe_water");
    112112
    113113                switch (getStyleIndex()) {
    114114                case SAFE_PILLAR:
    115115                        Main.main.undoRedo.add(new ChangePropertyCommand(node,
    116                                         "seamark:buoy_safewater:shape", "pillar"));
     116                                        "seamark:buoy_safe_water:shape", "pillar"));
    117117                        break;
    118118                case SAFE_SPAR:
    119119                        Main.main.undoRedo.add(new ChangePropertyCommand(node,
    120                                         "seamark:buoy_safewater:shape", "spar"));
     120                                        "seamark:buoy_safe_water:shape", "spar"));
    121121                        break;
    122122                case SAFE_SPHERE:
    123123                        Main.main.undoRedo.add(new ChangePropertyCommand(node,
    124                                         "seamark:buoy_safewater:shape", "sphere"));
     124                                        "seamark:buoy_safe_water:shape", "sphere"));
    125125                        break;
    126126                case SAFE_FLOAT:
    127127                        Main.main.undoRedo.add(new ChangePropertyCommand(node,
    128                                         "seamark:buoy_safewater:shape", "float"));
     128                                        "seamark:buoy_safe_water:shape", "float"));
    129129                        break;
    130130                default:
    131131                }
    132132                Main.main.undoRedo.add(new ChangePropertyCommand(node,
    133                                 "seamark:buoy_safewater:colour_pattern", "vertical stripes"));
     133                                "seamark:buoy_safe_water:colour_pattern", "vertical stripes"));
    134134                Main.main.undoRedo.add(new ChangePropertyCommand(node,
    135                                 "seamark:buoy_safewater:colour", "red;white"));
     135                                "seamark:buoy_safe_water:colour", "red;white"));
    136136
    137137                saveTopMarkData("spherical", "red");
     
    215215                keys = node.getKeys();
    216216
    217                 if (keys.containsKey("seamark:buoy_safewater:shape")) {
    218                         str = keys.get("seamark:buoy_safewater:shape");
     217                if (keys.containsKey("seamark:buoy_safe_water:shape")) {
     218                        str = keys.get("seamark:buoy_safe_water:shape");
    219219                       
    220220                        if (str.compareTo("pillar") == 0)
Note: See TracChangeset for help on using the changeset viewer.