diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2016-05-04 11:38:16 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2016-05-04 11:45:04 +0200 |
commit | 5410dce61c4da92760feeb5493b4574bfb854ec8 (patch) | |
tree | 77c7d4d0a382fa5ad0fb0959dea9d4028be049e2 /tracker-hatire/ftnoir_tracker_hat_settings.cpp | |
parent | 01b3ff0709003f4191760f53b14bebea4d88c3d9 (diff) |
tracker/hatire: fix spelling in identifiers
Diffstat (limited to 'tracker-hatire/ftnoir_tracker_hat_settings.cpp')
-rwxr-xr-x[-rw-r--r--] | tracker-hatire/ftnoir_tracker_hat_settings.cpp | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/tracker-hatire/ftnoir_tracker_hat_settings.cpp b/tracker-hatire/ftnoir_tracker_hat_settings.cpp index 02c99e75..8da5c1c6 100644..100755 --- a/tracker-hatire/ftnoir_tracker_hat_settings.cpp +++ b/tracker-hatire/ftnoir_tracker_hat_settings.cpp @@ -42,12 +42,12 @@ void TrackerSettings::load_ini() InvertZ = iniFile.value( "InvertZ", 0 ).toBool(); - RollAxe=iniFile.value("RollAxe",1).toInt(); - PitchAxe=iniFile.value("PitchAxe",2).toInt(); - YawAxe=iniFile.value("YawAxe",0).toInt(); - XAxe=iniFile.value("XAxe",1).toInt(); - YAxe=iniFile.value("YAxe",2).toInt(); - ZAxe=iniFile.value("ZAxe",0).toInt(); + RollAxis=iniFile.value("RollAxe",1).toInt(); + PitchAxis=iniFile.value("PitchAxe",2).toInt(); + YawAxis=iniFile.value("YawAxe",0).toInt(); + XAxis=iniFile.value("XAxe",1).toInt(); + YAxis=iniFile.value("YAxe",2).toInt(); + ZAxis=iniFile.value("ZAxe",0).toInt(); CmdStart=iniFile.value ( "CmdStart").toString(); @@ -101,12 +101,12 @@ void TrackerSettings::save_ini() const iniFile.setValue( "InvertY", InvertY ); iniFile.setValue( "InvertZ", InvertZ ); - iniFile.setValue ( "RollAxe", RollAxe ); - iniFile.setValue ( "PitchAxe", PitchAxe ); - iniFile.setValue ( "YawAxe",YawAxe ); - iniFile.setValue ( "XAxe", XAxe ); - iniFile.setValue ( "YAxe", YAxe ); - iniFile.setValue ( "ZAxe", ZAxe ); + iniFile.setValue ( "RollAxe", RollAxis ); + iniFile.setValue ( "PitchAxe", PitchAxis ); + iniFile.setValue ( "YawAxe",YawAxis ); + iniFile.setValue ( "XAxe", XAxis ); + iniFile.setValue ( "YAxe", YAxis ); + iniFile.setValue ( "ZAxe", ZAxis ); iniFile.setValue ( "CmdStart",CmdStart.toLatin1()); iniFile.setValue ( "CmdStop",CmdStop.toLatin1()); |