Changeset 3342 in osm for applications/editors/josm/plugins/surveyor/src/at
- Timestamp:
- 2007-06-25T19:13:08+02:00 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/surveyor/src/at/dallermassl/josm/plugin/surveyor/ButtonDescription.java
r2936 r3342 30 30 31 31 /** 32 * this class represents a button as it is described in the xml file. 32 33 * @author cdaller 33 34 * … … 86 87 this.hotkey = hotkey; 87 88 this.iconName = iconName; 88 this.type = type == null ? ButtonType.SINGLE : type; 89 if(type == null) { 90 this.type = ButtonType.SINGLE; 91 } else { 92 this.type = type; 93 } 89 94 this.actions = actions; 90 95 }
Note:
See TracChangeset
for help on using the changeset viewer.