don't need to call "return;" at end of function

This commit is contained in:
Sean Rhea
2009-12-12 22:02:59 -05:00
parent bef469384b
commit 8f6237c5f6

View File

@@ -109,7 +109,6 @@ clearResultsTable(QTableWidget *resultsTable)
for (int j=0; j<resultsTable->columnCount(); j++)
delete resultsTable->takeItem(i,j);
}
return;
}
void
@@ -295,5 +294,4 @@ BestIntervalDialog::addClicked()
}
}
mainWindow->updateRideFileIntervals();
return;
}