Ignore:
Timestamp:
2008-12-25T19:01:06+01:00 (16 years ago)
Author:
stoecker
Message:

updated a lot

Location:
applications/editors/josm/plugins/lakewalker
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/lakewalker/build.xml

    r12256 r12588  
    5959        <attribute name="Plugin-Description" value="Interface to Lakewalker module" />
    6060        <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
    61         <attribute name="Plugin-Mainversion" value="1084"/>
     61        <attribute name="Plugin-Mainversion" value="1180"/>
    6262        <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
    6363        <attribute name="Author" value="Brent Easton &lt;b.easton@uws.edu.au>, Jason Reid &lt;jrreid@ucalgary.ca>"/>
  • applications/editors/josm/plugins/lakewalker/src/org/openstreetmap/josm/plugins/lakewalker/LakewalkerPreferences.java

    r12255 r12588  
    132132   * Save entered preference values on OK button
    133133   */
    134   public void ok() {
     134  public boolean ok() {
    135135    Main.pref.put(PREF_MAX_SEG, maxSegsConfig.getValueString());
    136136    Main.pref.put(PREF_MAX_NODES, maxNodesConfig.getValueString());
     
    146146    Main.pref.put(PREF_MAXCACHESIZE, maxCacheSizeConfig.getValueString());
    147147    Main.pref.put(PREF_MAXCACHEAGE, maxCacheAgeConfig.getValueString());
     148    return false;
    148149  }
    149  
    150150}
Note: See TracChangeset for help on using the changeset viewer.