Changeset 379
- Timestamp:
- 09/19/08 15:18:59 (4 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
jasko.tim.lisp/src/jasko/tim/lisp/CuspResources.java
r375 r379 33 33 public static final String RUN_TESTS = "run-tests"; //$NON-NLS-1$ 34 34 public static final String STEP = "step"; //$NON-NLS-1$ 35 public static final String EXEC = "exec"; //$NON-NLS-1$ 35 36 36 37 private final static String[][] keywordImageArray = { … … 109 110 110 111 imageReg.put(STEP, loadImageDescriptor("step.gif")); //$NON-NLS-1$ 112 imageReg.put(EXEC, loadImageDescriptor("exec-lisp.gif")); //$NON-NLS-1$ 111 113 imageReg.put(RUN_TESTS, loadImageDescriptor("run-tests.gif")); //$NON-NLS-1$ 112 114 } jasko.tim.lisp/src/jasko/tim/lisp/swank/launcher/LispLaunchTab.java
r318 r379 185 185 */ 186 186 public Image getImage() { 187 Image img = LispPlugin.getDefault().getImageRegistry().get( LispImages.EXEC);187 Image img = LispPlugin.getDefault().getImageRegistry().get(CuspResources.EXEC); 188 188 return img; 189 189 }
