[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.technology.subversive] Re: Subversive in RCP app

Gilbert Mirenque wrote:

damn it..."org.eclipse.ui.ide" already was activated in the launch config.

Ok.


Can you see the Subversive plugins in the [Help|About] menu item of your application ? If you haven't the "About" item, you can add it in your ApplicationActionBarAdvisor.fillMenuBar(IMenuManager menuBar) :

MenuManager helpMenu = new MenuManager("&Help", "help");
helpMenu.add(aboutAction);
menuBar.add(helpMenu);

JM.D