Changeset 23061 in osm for applications/editors/josm/plugins
- Timestamp:
- 2010-09-07T18:03:33+02:00 (14 years ago)
- 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 194 194 dlg.sM01StatusBar.setText(getErrMsg()); 195 195 196 if ((getBuoyIndex() != 0) && (getStyleIndex() !=0)) {196 if ((getBuoyIndex() > 0) && (getStyleIndex() > 0)) { 197 197 dlg.tfM01Name.setEnabled(true); 198 198 dlg.tfM01Name.setText(getName()); -
applications/editors/josm/plugins/toms/src/toms/seamarks/buoys/BuoyIsol.java
r23060 r23061 110 110 dlg.sM01StatusBar.setText(getErrMsg()); 111 111 112 if ((getBuoyIndex() != 0) && (getStyleIndex() !=0)) {112 if ((getBuoyIndex() > 0) && (getStyleIndex() > 0)) { 113 113 dlg.tfM01Name.setEnabled(true); 114 114 dlg.tfM01Name.setText(getName()); -
applications/editors/josm/plugins/toms/src/toms/seamarks/buoys/BuoyLat.java
r23060 r23061 351 351 dlg.sM01StatusBar.setText(getErrMsg()); 352 352 353 if ((getBuoyIndex() != 0) && (getStyleIndex() !=0)) {353 if ((getBuoyIndex() > 0) && (getStyleIndex() > 0)) { 354 354 dlg.tfM01Name.setEnabled(true); 355 355 dlg.tfM01Name.setText(getName()); -
applications/editors/josm/plugins/toms/src/toms/seamarks/buoys/BuoyNota.java
r23060 r23061 52 52 dlg.sM01StatusBar.setText(getErrMsg()); 53 53 54 if (getBuoyIndex() !=0) {54 if (getBuoyIndex() > 0) { 55 55 dlg.cM01Radar.setEnabled(true); 56 56 dlg.cM01Radar.setVisible(true); -
applications/editors/josm/plugins/toms/src/toms/seamarks/buoys/BuoySaw.java
r23060 r23061 109 109 dlg.sM01StatusBar.setText(getErrMsg()); 110 110 111 if ((getBuoyIndex() != 0) && (getStyleIndex() !=0)) {111 if ((getBuoyIndex() > 0) && (getStyleIndex() > 0)) { 112 112 dlg.tfM01Name.setEnabled(true); 113 113 dlg.tfM01Name.setText(getName()); -
applications/editors/josm/plugins/toms/src/toms/seamarks/buoys/BuoySpec.java
r23060 r23061 143 143 dlg.sM01StatusBar.setText(getErrMsg()); 144 144 145 if ((getBuoyIndex() != 0) && (getStyleIndex() !=0)) {145 if ((getBuoyIndex() > 0) && (getStyleIndex() > 0)) { 146 146 dlg.tfM01Name.setEnabled(true); 147 147 dlg.tfM01Name.setText(getName());
Note:
See TracChangeset
for help on using the changeset viewer.