Changeset 33397 in osm for applications
- Timestamp:
- 2017-06-13T22:49:56+02:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/junctionchecking/src/org/openstreetmap/josm/plugins/JunctionChecker/JunctionCheckDialog.java
r33396 r33397 91 91 putValue(NAME, marktr("Create")); 92 92 putValue(SHORT_DESCRIPTION, tr("create the channel digraph")); 93 putValue(SMALL_ICON, ImageProvider.get("dialogs", "digraphcreation"));93 new ImageProvider("dialogs", "digraphcreation").getResource().attachImageIcon(this, true); 94 94 } 95 95 @Override … … 104 104 putValue(NAME, marktr("Check ")); 105 105 putValue(SHORT_DESCRIPTION, tr("check the subset for junction properties")); 106 putValue(SMALL_ICON, ImageProvider.get("dialogs", "junctioncheck"));106 new ImageProvider("dialogs", "junctioncheck").getResource().attachImageIcon(this, true); 107 107 } 108 108 @Override … … 117 117 putValue(NAME, marktr("Search ")); 118 118 putValue(SHORT_DESCRIPTION, tr("search for junctions in the channel subset")); 119 putValue(SMALL_ICON, ImageProvider.get("dialogs", "junctionsearch"));119 new ImageProvider("dialogs", "junctionsearch").getResource().attachImageIcon(this, true); 120 120 } 121 121 @Override
Note:
See TracChangeset
for help on using the changeset viewer.