# HG changeset patch # User wpaul # Date 1244068237 18000 # Node ID 09ccf47b690d72bbbc2a11e7ea0c2013c23adf74 # Parent 06d88bb6aac0b30ae0bb2b46f620317d07b4c244 fixed bug #x9223 diff -r 06d88bb6aac0 -r 09ccf47b690d cdt/cdt_5_0_x/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/views/executables/ExecutablesView.java --- a/cdt/cdt_5_0_x/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/views/executables/ExecutablesView.java Tue Jun 02 09:59:27 2009 -0500 +++ b/cdt/cdt_5_0_x/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/views/executables/ExecutablesView.java Wed Jun 03 17:30:37 2009 -0500 @@ -239,9 +239,9 @@ final SashForm sashForm = new SashForm(container, SWT.NONE); // Create the two sub viewers. - executablesViewer = new ExecutablesViewer(this, sashForm, SWT.FULL_SELECTION + SWT.BORDER + SWT.MULTI); + executablesViewer = new ExecutablesViewer(this, sashForm, SWT.FULL_SELECTION | SWT.BORDER | SWT.MULTI); ExecutablesManager.getExecutablesManager().addExecutablesChangeListener(executablesViewer); - sourceFilesViewer = new SourceFilesViewer(this, sashForm, SWT.BORDER); + sourceFilesViewer = new SourceFilesViewer(this, sashForm, SWT.BORDER | SWT.MULTI); sashForm.setWeights(new int[] { 1, 1 }); @@ -285,16 +285,17 @@ Executable executable = (Executable)firstElement; this.setName(Messages.ExecutablesView_Finding_Sources_Job_Name + executable.getName()); executable.getSourceFiles(monitor); - - UIJob selectExeUIJob = new UIJob(Messages.ExecutablesView_Select_Executable){ - @Override - public IStatus runInUIThread(IProgressMonitor monitor) { - sourceFilesViewer.setInput(firstElement); - sourceFilesViewer.packColumns(); - return Status.OK_STATUS; - }}; - selectExeUIJob.schedule(); } + // selection could be empty, so do this no matter what to update the source + // files viewer + UIJob selectExeUIJob = new UIJob(Messages.ExecutablesView_Select_Executable){ + @Override + public IStatus runInUIThread(IProgressMonitor monitor) { + sourceFilesViewer.setInput(firstElement); + sourceFilesViewer.packColumns(); + return Status.OK_STATUS; + }}; + selectExeUIJob.schedule(); return Status.OK_STATUS; }}; setectExeJob.schedule();