Use old split ride for now

Split ride is a bit of a radical change from the
original; more thought is needed to ensure the
original functionality is retained whilst making
the UI and workflow intuitive.

This patch reverts MainWindow back to using the
old SplitRideDialog.
This commit is contained in:
Mark Liversedge
2011-10-06 19:18:55 +01:00
parent d63db7bc7a
commit 95b00bedf7

View File

@@ -51,7 +51,7 @@
#include "DatePickerDialog.h"
#include "ToolsDialog.h"
#include "MetricAggregator.h"
#include "SplitActivityWizard.h"
#include "SplitRideDialog.h"
#include "TwitterDialog.h"
#include "WithingsDownload.h"
#include "CalendarDownload.h"
@@ -1289,7 +1289,7 @@ MainWindow::revertRide()
void
MainWindow::splitRide()
{
if (ride) (new SplitActivityWizard(this))->exec();
if (ride) (new SplitRideDialog(this))->exec();
else QMessageBox::critical(this, tr("Split Activity"), tr("No activity selected!"));
}