Changeset 27632 in osm for applications
- Timestamp:
- 2012-01-26T18:50:55+01:00 (13 years ago)
- Location:
- applications/editors/josm/plugins/CommandLine/src/CommandLine
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/CommandLine/src/CommandLine/CommandAction.java
r25044 r27632 40 40 if (!parentCommand.icon.equals("")) { 41 41 try { 42 putValue(Action.SMALL_ICON, ImageProvider.get( "/../plugins/CommandLine/", parentCommand.icon));43 putValue(Action.LARGE_ICON_KEY, ImageProvider.get( "/../plugins/CommandLine/", parentCommand.icon));42 putValue(Action.SMALL_ICON, ImageProvider.get(parentPlugin.pluginDir, parentCommand.icon)); 43 putValue(Action.LARGE_ICON_KEY, ImageProvider.get(parentPlugin.pluginDir, parentCommand.icon)); 44 44 } 45 45 catch (NullPointerException e) { -
applications/editors/josm/plugins/CommandLine/src/CommandLine/CommandLine.java
r27242 r27632 79 79 protected MapFrame currentMapFrame; 80 80 protected MapMode previousMode; 81 82 static final String pluginDir = Main.pref.getPluginsDirectory().getAbsolutePath() + "/CommandLine/"; 81 83 82 84 public CommandLine(PluginInformation info) {
Note:
See TracChangeset
for help on using the changeset viewer.