I'm currently migration an Eclipse RCP application from 3.0 to 4.4.
Due to the migration Eclipse added some menu entries which I want to get rid off using this approach Remove "File, edit,...etc" menus from Eclipse RCP application. Therefore I am calling the method postWindowCreate() in my class that extends WorkbenchAdvisor and implements IPerspectiveListener, but the method is never called.
I've looked up something about this and found out that there was a bug: https://bugs.eclipse.org/bugs/show_bug.cgi?id=363807
Since I am now using Eclipse 4.4, this bug should be fixed and the method should be called, but it doesen't. The bug was fixed for version 4.3. Is there any information that the bug recurred in version 4.4 or is it because the application was originally developed in Eclipse RCP 3.0?
I also tried to call openIntro() out of curiosity, but this method isn't called too.
If this is a bug, is there any workaround? Due to the fact that the application was written in Eclipse RCP 3.0 I can't use commands ect. or those new fancy features of Eclipse RCP 4.x.
WorkbenchWindowAdvisorandWorkbenchAdvisorboth of which have apostWindowCreate. Please clarify which one you are using. - greg-449postWinowCreate()of the classWorkbenchAdvisor. - Pascal Petruch