Changeset 12588 in osm for applications/editors/josm/plugins/lakewalker
- Timestamp:
- 2008-12-25T19:01:06+01:00 (16 years ago)
- Location:
- applications/editors/josm/plugins/lakewalker
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/lakewalker/build.xml
r12256 r12588 59 59 <attribute name="Plugin-Description" value="Interface to Lakewalker module" /> 60 60 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 61 <attribute name="Plugin-Mainversion" value="1 084"/>61 <attribute name="Plugin-Mainversion" value="1180"/> 62 62 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/> 63 63 <attribute name="Author" value="Brent Easton <b.easton@uws.edu.au>, Jason Reid <jrreid@ucalgary.ca>"/> -
applications/editors/josm/plugins/lakewalker/src/org/openstreetmap/josm/plugins/lakewalker/LakewalkerPreferences.java
r12255 r12588 132 132 * Save entered preference values on OK button 133 133 */ 134 public voidok() {134 public boolean ok() { 135 135 Main.pref.put(PREF_MAX_SEG, maxSegsConfig.getValueString()); 136 136 Main.pref.put(PREF_MAX_NODES, maxNodesConfig.getValueString()); … … 146 146 Main.pref.put(PREF_MAXCACHESIZE, maxCacheSizeConfig.getValueString()); 147 147 Main.pref.put(PREF_MAXCACHEAGE, maxCacheAgeConfig.getValueString()); 148 return false; 148 149 } 149 150 150 }
Note:
See TracChangeset
for help on using the changeset viewer.