Ignore:
Timestamp:
2010-09-07T18:03:33+02:00 (14 years ago)
Author:
malcolmh
Message:

break

Location:
applications/editors/josm/plugins/toms/src/toms/seamarks/buoys
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/toms/src/toms/seamarks/buoys/BuoyCard.java

    r23060 r23061  
    194194                dlg.sM01StatusBar.setText(getErrMsg());
    195195
    196                 if ((getBuoyIndex() != 0) && (getStyleIndex() != 0)) {
     196                if ((getBuoyIndex() > 0) && (getStyleIndex() > 0)) {
    197197                        dlg.tfM01Name.setEnabled(true);
    198198                        dlg.tfM01Name.setText(getName());
  • applications/editors/josm/plugins/toms/src/toms/seamarks/buoys/BuoyIsol.java

    r23060 r23061  
    110110                dlg.sM01StatusBar.setText(getErrMsg());
    111111
    112                 if ((getBuoyIndex() != 0) && (getStyleIndex() != 0)) {
     112                if ((getBuoyIndex() > 0) && (getStyleIndex() > 0)) {
    113113                        dlg.tfM01Name.setEnabled(true);
    114114                        dlg.tfM01Name.setText(getName());
  • applications/editors/josm/plugins/toms/src/toms/seamarks/buoys/BuoyLat.java

    r23060 r23061  
    351351                dlg.sM01StatusBar.setText(getErrMsg());
    352352
    353                 if ((getBuoyIndex() != 0) && (getStyleIndex() != 0)) {
     353                if ((getBuoyIndex() > 0) && (getStyleIndex() > 0)) {
    354354                        dlg.tfM01Name.setEnabled(true);
    355355                        dlg.tfM01Name.setText(getName());
  • applications/editors/josm/plugins/toms/src/toms/seamarks/buoys/BuoyNota.java

    r23060 r23061  
    5252                dlg.sM01StatusBar.setText(getErrMsg());
    5353
    54                 if (getBuoyIndex() != 0) {
     54                if (getBuoyIndex() > 0) {
    5555                        dlg.cM01Radar.setEnabled(true);
    5656                        dlg.cM01Radar.setVisible(true);
  • applications/editors/josm/plugins/toms/src/toms/seamarks/buoys/BuoySaw.java

    r23060 r23061  
    109109                dlg.sM01StatusBar.setText(getErrMsg());
    110110
    111                 if ((getBuoyIndex() != 0) && (getStyleIndex() != 0)) {
     111                if ((getBuoyIndex() > 0) && (getStyleIndex() > 0)) {
    112112                        dlg.tfM01Name.setEnabled(true);
    113113                        dlg.tfM01Name.setText(getName());
  • applications/editors/josm/plugins/toms/src/toms/seamarks/buoys/BuoySpec.java

    r23060 r23061  
    143143                dlg.sM01StatusBar.setText(getErrMsg());
    144144
    145                 if ((getBuoyIndex() != 0) && (getStyleIndex() != 0)) {
     145                if ((getBuoyIndex() > 0) && (getStyleIndex() > 0)) {
    146146                        dlg.tfM01Name.setEnabled(true);
    147147                        dlg.tfM01Name.setText(getName());
Note: See TracChangeset for help on using the changeset viewer.