Fix 'Fix Tools' being called

.. I deleted the lines that actually call the data
   processor when I was refactoring MainWindow.

.. this must have been an accident as there is no
   possible reason for just deleting the code!

Fixes #747
This commit is contained in:
Mark Liversedge
2014-01-05 12:18:44 +00:00
parent 2eff77f345
commit f3ba7ed352

View File

@@ -105,6 +105,9 @@ ManualDataProcessorDialog::ManualDataProcessorDialog(Context *context, QString n
void
ManualDataProcessorDialog::okClicked()
{
if (ride && ride->ride() && processor->postProcess((RideFile *)ride->ride(), config) == true) {
context->notifyRideSelected(ride); // to remain compatible with rest of GC for now
}
accept();
}