mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-04 06:45:43 +02:00
Bug 82264: Enhance the Shared Libraries view. No need to compute the module's labels in background.
This commit is contained in:
parent
833fd9ee70
commit
4568efb20e
2 changed files with 7 additions and 4 deletions
|
@ -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
|
2005-02-16 Mikhail Khodjaiants
|
||||||
Bug 82264: Enhance the Shared Libraries view.
|
Bug 82264: Enhance the Shared Libraries view.
|
||||||
Replaced the table viewer by text widgets.
|
Replaced the table viewer by text widgets.
|
||||||
|
|
|
@ -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.AbstractDebugEventHandler;
|
||||||
import org.eclipse.cdt.debug.internal.ui.views.AbstractDebugEventHandlerView;
|
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.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.internal.ui.views.IDebugExceptionHandler;
|
||||||
import org.eclipse.cdt.debug.ui.CDebugUIPlugin;
|
import org.eclipse.cdt.debug.ui.CDebugUIPlugin;
|
||||||
import org.eclipse.cdt.debug.ui.ICDebugUIConstants;
|
import org.eclipse.cdt.debug.ui.ICDebugUIConstants;
|
||||||
|
@ -507,7 +504,8 @@ public class ModulesView extends AbstractDebugEventHandlerView implements IDebug
|
||||||
}
|
}
|
||||||
|
|
||||||
protected IBaseLabelProvider createLabelProvider( StructuredViewer viewer ) {
|
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() {
|
protected IDebugModelPresentation getModelPresentation() {
|
||||||
|
|
Loading…
Add table
Reference in a new issue