From 95b00bedf710cded9f9865aac833c4dbb45f569b Mon Sep 17 00:00:00 2001 From: Mark Liversedge Date: Thu, 6 Oct 2011 19:18:55 +0100 Subject: [PATCH] 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. --- src/MainWindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/MainWindow.cpp b/src/MainWindow.cpp index e0a9be206..810ead92b 100644 --- a/src/MainWindow.cpp +++ b/src/MainWindow.cpp @@ -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!")); }