mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
[apps/statistics] Typo
Change-Id: Id980ccb61aec429fa2e1e81b04a83b0b9ba9d744
This commit is contained in:
committed by
Romain Goyet
parent
967cb2f030
commit
f636974c0f
@@ -80,7 +80,7 @@ void CalculationController::willDisplayCellAtLocation(HighlightCell * cell, int
|
||||
myCell->setEven(j%2 == 0);
|
||||
myCell->setHighlighted(i == m_selectableTableView.selectedColumn() && j == m_selectableTableView.selectedRow());
|
||||
if (i == 0) {
|
||||
const char * titles[k_totalNumberOfRows] = {"Effectif total", "Minimum", "Maximum", "Etendu",
|
||||
const char * titles[k_totalNumberOfRows] = {"Effectif total", "Minimum", "Maximum", "Etendue",
|
||||
"Moyenne", "Ecart-type", "Variance", "Q1", "Q3", "Mediane", "Ecart interquartile", "Somme",
|
||||
"Somme des carres"};
|
||||
EvenOddPointerTextCell * myCell = (EvenOddPointerTextCell *)cell;
|
||||
|
||||
@@ -8,14 +8,14 @@ namespace Statistics {
|
||||
|
||||
HistogramParameterController::HistogramParameterController(Responder * parentResponder, Store * store) :
|
||||
FloatParameterController(parentResponder),
|
||||
m_binWidthCell(PointerTableCellWithEditableText(&m_selectableTableView, this, m_draftTextBuffer, (char*)"Largeur des rectanges : ")),
|
||||
m_binWidthCell(PointerTableCellWithEditableText(&m_selectableTableView, this, m_draftTextBuffer, (char*)"Largeur des rectangles : ")),
|
||||
m_minValueCell(PointerTableCellWithEditableText(&m_selectableTableView, this, m_draftTextBuffer, (char*)"Debut de la serie : ")),
|
||||
m_store(store)
|
||||
{
|
||||
}
|
||||
|
||||
const char * HistogramParameterController::title() const {
|
||||
return "Histogramme";
|
||||
return "Parametres de l'histogramme";
|
||||
}
|
||||
|
||||
float HistogramParameterController::parameterAtIndex(int index) {
|
||||
|
||||
Reference in New Issue
Block a user