Community
Participate
Working Groups
When invoking a MessageDialog.openError(...) and passing in a unique title and a message, the title is ignored and the message is used as the title. This is in 3.3 M5 Setting as major because it looks bad if the message is long...
Downgrading to "minor"... it can be worked around by invoked the constructor on MessageDialog and passing MessageDialog.ERROR i.e. MessageDialog dialog = new MessageDialog(null, myTitle, null, // accept the default window icon myMessage, MessageDialog.ERROR, new String[] { IDialogConstants.OK_LABEL }, 0); dialog.open();
this bug was fixed in M6. *** This bug has been marked as a duplicate of bug 173678 ***