[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.platform.rcp] Re: CommonNavigator display problem on rcp application starting

Hi,
i tried this :

@Override
public IAdaptable getDefaultPageInput() {
	return ResourcesPlugin.getWorkspace();
}

No change.
Regards,
Sebastien


Paul Webster wrote:
Sebastien BALARD wrote:
    @Override
    public IAdaptable getDefaultPageInput() {
        return super.getDefaultPageInput();
    }

that returns null, which is probably not what you want :-)

Here is where you need to return your workspace.

PW