From 8f6237c5f6c2915507a914383ccb34afbf806309 Mon Sep 17 00:00:00 2001 From: Sean Rhea Date: Sat, 12 Dec 2009 22:02:59 -0500 Subject: [PATCH] don't need to call "return;" at end of function --- src/BestIntervalDialog.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/BestIntervalDialog.cpp b/src/BestIntervalDialog.cpp index 503b83734..24eb5f0e2 100644 --- a/src/BestIntervalDialog.cpp +++ b/src/BestIntervalDialog.cpp @@ -109,7 +109,6 @@ clearResultsTable(QTableWidget *resultsTable) for (int j=0; jcolumnCount(); j++) delete resultsTable->takeItem(i,j); } - return; } void @@ -295,5 +294,4 @@ BestIntervalDialog::addClicked() } } mainWindow->updateRideFileIntervals(); - return; }