Changeset 12588 in osm for applications/editors/josm/plugins/remotecontrol
- Timestamp:
- 2008-12-25T19:01:06+01:00 (16 years ago)
- Location:
- applications/editors/josm/plugins/remotecontrol
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/remotecontrol
-
Property svn:ignore
set to
build
-
Property svn:ignore
set to
-
applications/editors/josm/plugins/remotecontrol/build.xml
r9417 r12588 40 40 <attribute name="Plugin-Description" value="A plugin allowing other applications to send commands to JOSM." /> 41 41 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 42 <attribute name="Plugin-Mainversion" value="1180"/> 42 43 <attribute name="Plugin-Date" value="${version.entry.commit.date}"/> 43 44 <attribute name="Author" value="Frederik Ramm <frederik@remote.org>"/> -
applications/editors/josm/plugins/remotecontrol/src/org/openstreetmap/josm/plugins/remotecontrol/RemoteControlPreferences.java
r9465 r12588 57 57 } 58 58 59 public voidok() {59 public boolean ok() { 60 60 Main.pref.put("remotecontrol.permission.load-data", permissionLoadData.isSelected()); 61 61 Main.pref.put("remotecontrol.permission.change-selection", permissionChangeSelection.isSelected()); 62 62 Main.pref.put("remotecontrol.permission.change-viewport", permissionChangeViewport.isSelected()); 63 63 Main.pref.put("remotecontrol.always-confirm", alwaysAskUserConfirm.isSelected()); 64 64 return false; 65 65 } 66 66 }
Note:
See TracChangeset
for help on using the changeset viewer.