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

updated a lot

Location:
applications/editors/josm/plugins/remotecontrol
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/remotecontrol

    • Property svn:ignore set to
      build
  • applications/editors/josm/plugins/remotecontrol/build.xml

    r9417 r12588  
    4040        <attribute name="Plugin-Description" value="A plugin allowing other applications to send commands to JOSM." />
    4141        <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/>
     42        <attribute name="Plugin-Mainversion" value="1180"/>
    4243        <attribute name="Plugin-Date" value="${version.entry.commit.date}"/>
    4344        <attribute name="Author" value="Frederik Ramm &lt;frederik@remote.org&gt;"/>
  • applications/editors/josm/plugins/remotecontrol/src/org/openstreetmap/josm/plugins/remotecontrol/RemoteControlPreferences.java

    r9465 r12588  
    5757    }
    5858   
    59     public void ok() {
     59    public boolean ok() {
    6060        Main.pref.put("remotecontrol.permission.load-data", permissionLoadData.isSelected());
    6161        Main.pref.put("remotecontrol.permission.change-selection", permissionChangeSelection.isSelected());
    6262        Main.pref.put("remotecontrol.permission.change-viewport", permissionChangeViewport.isSelected());
    6363        Main.pref.put("remotecontrol.always-confirm", alwaysAskUserConfirm.isSelected());
    64                
     64        return false;
    6565    }
    6666}
Note: See TracChangeset for help on using the changeset viewer.