Add XData UNITS support Part 2 of 2

.. added to DataFilter XDATA_UNITS("..", "...") returns the units as
   a string.

.. added to the various dialogs in RideEditor, to enable units and
   series name to be set and edited by the user.
This commit is contained in:
Mark Liversedge
2016-08-26 11:37:34 +01:00
parent d654d91538
commit 0bcfd6e52c
7 changed files with 83 additions and 24 deletions

View File

@@ -185,7 +185,7 @@ XDataTableModel::removeRows(int row, int count, const QModelIndex &)
bool
XDataTableModel::insertColumn(QString name)
{
ride->command->addXDataSeries(xdata, name);
ride->command->addXDataSeries(xdata, name, "");
return true;
}