1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 17:05:26 +02:00

Bug 82264: Enhance the Shared Libraries view. No need to compute the module's labels in background.

This commit is contained in:
Mikhail Khodjaiants 2005-02-18 18:48:55 +00:00
parent 833fd9ee70
commit 4568efb20e
2 changed files with 7 additions and 4 deletions

View file

@ -1,3 +1,8 @@
2005-02-17 Mikhail Khodjaiants
Bug 82264: Enhance the Shared Libraries view.
No need to compute the module's labels in background.
* ModulesView.java
2005-02-16 Mikhail Khodjaiants
Bug 82264: Enhance the Shared Libraries view.
Replaced the table viewer by text widgets.

View file

@ -24,9 +24,6 @@ import org.eclipse.cdt.debug.internal.ui.preferences.ICDebugPreferenceConstants;
import org.eclipse.cdt.debug.internal.ui.views.AbstractDebugEventHandler;
import org.eclipse.cdt.debug.internal.ui.views.AbstractDebugEventHandlerView;
import org.eclipse.cdt.debug.internal.ui.views.AbstractViewerState;
import org.eclipse.cdt.debug.internal.ui.views.DebugViewDecoratingLabelProvider;
import org.eclipse.cdt.debug.internal.ui.views.DebugViewInterimLabelProvider;
import org.eclipse.cdt.debug.internal.ui.views.DebugViewLabelDecorator;
import org.eclipse.cdt.debug.internal.ui.views.IDebugExceptionHandler;
import org.eclipse.cdt.debug.ui.CDebugUIPlugin;
import org.eclipse.cdt.debug.ui.ICDebugUIConstants;
@ -507,7 +504,8 @@ public class ModulesView extends AbstractDebugEventHandlerView implements IDebug
}
protected IBaseLabelProvider createLabelProvider( StructuredViewer viewer ) {
return new DebugViewDecoratingLabelProvider( viewer, new DebugViewInterimLabelProvider( getModelPresentation() ), new DebugViewLabelDecorator( getModelPresentation() ) );
// return new DebugViewDecoratingLabelProvider( viewer, new DebugViewInterimLabelProvider( getModelPresentation() ), new DebugViewLabelDecorator( getModelPresentation() ) );
return getModelPresentation();
}
protected IDebugModelPresentation getModelPresentation() {