mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 17:56:01 +02:00
Bug 125561: ClassCastException in Modules view.
This commit is contained in:
parent
713fef5b08
commit
037c32a015
2 changed files with 5 additions and 3 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2006-01-27 Mikhail Khodjaiants
|
||||||
|
Bug 125561: ClassCastException in Modules view.
|
||||||
|
* ModulesView.java
|
||||||
|
|
||||||
2006-01-22 Mikhail Khodjaiants
|
2006-01-22 Mikhail Khodjaiants
|
||||||
Bug 60682: No schema for CDebuggerPage extension point.
|
Bug 60682: No schema for CDebuggerPage extension point.
|
||||||
* plugin.xml
|
* plugin.xml
|
||||||
|
|
|
@ -12,7 +12,6 @@ package org.eclipse.cdt.debug.internal.ui.views.modules;
|
||||||
|
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
import java.util.Iterator;
|
import java.util.Iterator;
|
||||||
import java.util.Map;
|
|
||||||
import org.eclipse.cdt.core.IAddress;
|
import org.eclipse.cdt.core.IAddress;
|
||||||
import org.eclipse.cdt.core.model.ICElement;
|
import org.eclipse.cdt.core.model.ICElement;
|
||||||
import org.eclipse.cdt.debug.core.model.ICDebugTarget;
|
import org.eclipse.cdt.debug.core.model.ICDebugTarget;
|
||||||
|
@ -913,8 +912,7 @@ public class ModulesView extends AbstractDebugView implements IDebugContextListe
|
||||||
private void disposeImageCache() {
|
private void disposeImageCache() {
|
||||||
Iterator it = fImageCache.values().iterator();
|
Iterator it = fImageCache.values().iterator();
|
||||||
while( it.hasNext() ) {
|
while( it.hasNext() ) {
|
||||||
Map.Entry entry = (Map.Entry)it.next();
|
((Image)it.next()).dispose();
|
||||||
((Image)entry.getValue()).dispose();
|
|
||||||
}
|
}
|
||||||
fImageCache.clear();
|
fImageCache.clear();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue