aboutsummaryrefslogtreecommitdiffstats
path: root/app/file_operation.h
diff options
context:
space:
mode:
authorMatt Ranostay <matt.ranostay@konsulko.com>2019-11-01 02:28:23 -0700
committerMatt Ranostay <matt.ranostay@konsulko.com>2019-11-01 02:30:18 -0700
commitc01cd8bc05b4ac3e8bb198db35a8819453940671 (patch)
tree5ac9acc257daee888e3a299b6b35b7e339c9f473 /app/file_operation.h
parent7595b00d081e44ddff94cd4c51cc8c20f49f2f2d (diff)
ondemandnavi: fix typo of longitude
Fixed typo of longitude (was longitute) in code and configuration. Bug-AGL: SPEC-2933 Change-Id: I2b49d8c7d8ff581c0c7caeff43e50c40d603c127 Signed-off-by: Matt Ranostay <matt.ranostay@konsulko.com>
Diffstat (limited to 'app/file_operation.h')
-rw-r--r--app/file_operation.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/file_operation.h b/app/file_operation.h
index 962c506..8d28bfb 100644
--- a/app/file_operation.h
+++ b/app/file_operation.h
@@ -21,7 +21,7 @@ class File_Operation: public QObject{
double m_car_speed; // set Km/h
int m_update_interval; // set millisecond
double m_start_latitude;
- double m_start_longitute;
+ double m_start_longitude;
bool m_enable_osm;
QString m_mapStyleUrls;
@@ -33,7 +33,7 @@ public:
Q_INVOKABLE double getCarSpeed();
Q_INVOKABLE int getUpdateInterval();
Q_INVOKABLE double getStartLatitude();
- Q_INVOKABLE double getStartLongitute();
+ Q_INVOKABLE double getStartLongitude();
Q_INVOKABLE QString getMapStyleUrls();
Q_INVOKABLE bool isOSMEnabled() { return m_enable_osm; };