Skip to content

Commit

Permalink
Merge pull request #9 from KlasJoenssson/Bug3164
Browse files Browse the repository at this point in the history
Fixes bug #3164
  • Loading branch information
goglepox committed Mar 22, 2012
2 parents aabdde8 + 538bcc6 commit d7a986a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Expand Up @@ -56,8 +56,10 @@ public interface IUIManager extends IBioclipseManager {
public void open(IFile file);

@Recorded
@PublishedMethod(params="List<IFile> files",
methodSummary="Opens a list of files (e.g. a gist) in an editor.")
@GuiAction
public void open( List<IFile> files );
public void openFiles( List<IFile> files );

@GuiAction
public void open(String filePath, String editor) throws BioclipseException;
Expand Down
Expand Up @@ -112,7 +112,7 @@ public void open( final IFile file ) {
}
}

public void open( List<IFile> files ) {
public void openFiles( List<IFile> files ) {
IWorkbenchPage page = PlatformUI.getWorkbench()
.getActiveWorkbenchWindow()
.getActivePage();
Expand Down

0 comments on commit d7a986a

Please sign in to comment.