Changed the label from mm to m as that's what is displayed.

This commit is contained in:
Justin Knotzke
2009-09-09 07:25:57 -04:00
parent 0873317ea7
commit 65ee84f948

View File

@@ -391,7 +391,7 @@ MainWindow::MainWindow(const QDir &home) :
QLabel *qaCadLabel = new QLabel(tr("RPM:"), window);
qaCadValue = new QLineEdit(QString("%1").arg(pfPvPlot->getCAD()));
qaCadValue->setValidator(new QIntValidator(0, 999, qaCadValue));
QLabel *qaClLabel = new QLabel(tr("Crank Length (mm):"), window);
QLabel *qaClLabel = new QLabel(tr("Crank Length (m):"), window);
qaClValue = new QLineEdit(QString("%1").arg(1000 * pfPvPlot->getCL()));
shadeZonesPfPvCheckBox = new QCheckBox;
shadeZonesPfPvCheckBox->setText("Shade zones");