Changeset 16207 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2020-03-28T09:34:19+01:00 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/ImageResource.java
r16074 r16207 113 113 * Set both icons of an Action 114 114 * @param a The action for the icons 115 * @param a ddresource Adds an resource named "ImageResource" if <code>true</code>115 * @param attachImageResource Adds an resource named "ImageResource" if <code>true</code> 116 116 * @since 10369 117 117 */ 118 public void attachImageIcon(AbstractAction a, boolean a ddresource) {118 public void attachImageIcon(AbstractAction a, boolean attachImageResource) { 119 119 attachImageIcon(a); 120 if (a ddresource) {120 if (attachImageResource) { 121 121 a.putValue("ImageResource", this); 122 122 }
Note:
See TracChangeset
for help on using the changeset viewer.