1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-19 15:05:36 +02:00

Bug 213184: Modules view broken.

This commit is contained in:
Mikhail Khodjaiants 2007-12-17 16:46:18 +00:00
parent 4dfb5db677
commit 5cfeda3947

View file

@ -213,9 +213,9 @@ public class ModulesView extends AbstractDebugView implements IDebugContextListe
* resolved.
*/
private IViewerInputRequestor fInputRequestor = new IViewerInputRequestor() {
public void viewerInputComplete(IViewerInputUpdate update) {
if (!update.isCanceled()) {
setViewerInput(update.getViewerInput());
public void viewerInputComplete( IViewerInputUpdate update ) {
if ( !update.isCanceled() ) {
setViewerInput( update.getInputElement() );
}
}
};