MessageBox mb = new MessageBox(getShell(), SWT.ICON_QUESTION | SWT.YES | SWT.NO);
mb.setText(Messages.getString("MainWindow.Confirmation")); //$NON-NLS-1$
mb.setMessage(Messages.getString("MainWindow.Do_You_Want_To_Delete_Profile") + " " + p.getName() + " ?"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
if (mb.open() == SWT.YES) {
profileManager.removeProfile(p);
profileManager.save();
}
}
}
protected void toolItemScheduleWidgedSelected(SelectionEvent evt) {