Changeset 35666 in osm for applications/editors/josm/plugins
- Timestamp:
- 2020-12-07T18:11:07+01:00 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/buildings_tools/src/org/openstreetmap/josm/plugins/buildings_tools/ToolSettings.java
r35171 r35666 28 28 29 29 private static Shape shape = loadShape(); 30 private static double width = 0;31 private static double lenstep = 0;30 private static double width; 31 private static double lenstep; 32 32 private static boolean useAddr; 33 33 private static final Map<String, String> TAGS = new HashMap<>(); … … 39 39 } 40 40 41 public static void setAddrDialog(boolean _useAddr) {42 useAddr = _useAddr;41 public static void setAddrDialog(boolean useAddr) { 42 ToolSettings.useAddr = useAddr; 43 43 } 44 44 … … 124 124 } 125 125 126 public static void setAutoSelect(boolean _autoSelect) {127 autoSelect = _autoSelect;126 public static void setAutoSelect(boolean autoSelect) { 127 ToolSettings.autoSelect = autoSelect; 128 128 } 129 129
Note:
See TracChangeset
for help on using the changeset viewer.