mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Fix for bug 63612: Debugger Pages are not displayed.
This commit is contained in:
parent
de0397f03e
commit
5b75216401
2 changed files with 11 additions and 8 deletions
|
@ -1,3 +1,7 @@
|
|||
2004-05-24 Mikhail Khodjaiants
|
||||
Fix for bug 63612: Debugger Pages are not displayed.
|
||||
* CDebugUIPlugin.java
|
||||
|
||||
2004-05-21 Mikhail Khodjaiants
|
||||
Removed dependencies on the compatibility plugin and replaced deprecated classes and methods.
|
||||
Warning cleanup.
|
||||
|
|
|
@ -229,14 +229,13 @@ public class CDebugUIPlugin extends AbstractUIPlugin implements ISelectionListen
|
|||
}
|
||||
|
||||
protected void initializeDebuggerPageMap() {
|
||||
fDebuggerPageMap = new HashMap(10);
|
||||
|
||||
IExtensionPoint extensionPoint= Platform.getExtensionRegistry().getExtensionPoint("CDebuggerPage"); //$NON-NLS-1$
|
||||
IConfigurationElement[] infos= extensionPoint.getConfigurationElements();
|
||||
for (int i = 0; i < infos.length; i++) {
|
||||
String id = infos[i].getAttribute("debuggerID"); //$NON-NLS-1$
|
||||
fDebuggerPageMap.put(id, infos[i]);
|
||||
}
|
||||
fDebuggerPageMap = new HashMap( 10 );
|
||||
IExtensionPoint extensionPoint = Platform.getExtensionRegistry().getExtensionPoint( PLUGIN_ID, "CDebuggerPage" ); //$NON-NLS-1$
|
||||
IConfigurationElement[] infos = extensionPoint.getConfigurationElements();
|
||||
for( int i = 0; i < infos.length; i++ ) {
|
||||
String id = infos[i].getAttribute( "debuggerID" ); //$NON-NLS-1$
|
||||
fDebuggerPageMap.put( id, infos[i] );
|
||||
}
|
||||
}
|
||||
|
||||
public static void errorDialog( String message, IStatus status )
|
||||
|
|
Loading…
Add table
Reference in a new issue