Fix typo: LENGHT -> LENGTH

This commit is contained in:
Berthold Stoeger 2017-11-16 22:00:26 +01:00 committed by Lubomir I. Ivanov
parent 7fa5fcfa1d
commit 9ec7aa7fd7
3 changed files with 7 additions and 7 deletions

View file

@ -1625,7 +1625,7 @@ void UnitsSettings::setLength(int value)
QSettings s;
s.beginGroup(group);
s.setValue("length", value);
prefs.units.length = (units::LENGHT) value;
prefs.units.length = (units::LENGTH) value;
emit lengthChanged(value);
}