*
* @param quickFixTable the table containing the quickfix
* @param quickFixIndex the index of the quickfix.
*/
protected void applyQuickFix(final SWTBotTable quickFixTable, final int quickFixIndex) {
asyncExec(new VoidResult() {
public void run() {
if (log.isDebugEnabled())
log.debug("Selecting row [" + quickFixIndex + "] " + getControl().getItem(quickFixIndex).getText() + " in " + widget);
getControl().setSelection(quickFixIndex);
Event event = new Event();