I’m wondering how to use the new QUESTION_WITH_CANCEL dialog kind when opened with MessageDialog.open(int kind, Shell parent, String title, String message,int style).
Since the open method is returning boolean and now we have 3 possible state from Yes, No, or Cancel.
You can’t use the static method
MessageDialog.open(bunch of parameters), you’ll have to create the Dialog and call the non-staticopen()yourself to check its return value.