diff options
Diffstat (limited to 'core/settings/qPrefLocationService.h')
-rw-r--r-- | core/settings/qPrefLocationService.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/settings/qPrefLocationService.h b/core/settings/qPrefLocationService.h index 676f2bbf8..6fdca8385 100644 --- a/core/settings/qPrefLocationService.h +++ b/core/settings/qPrefLocationService.h @@ -8,8 +8,8 @@ class qPrefLocationService : public QObject { Q_OBJECT - Q_PROPERTY(int distance_threshold READ distance_threshold WRITE set_distance_threshold NOTIFY distance_threshold_changed); - Q_PROPERTY(int time_threshold READ time_threshold WRITE set_time_threshold NOTIFY time_threshold_changed); + Q_PROPERTY(int distance_threshold READ distance_threshold WRITE set_distance_threshold NOTIFY distance_thresholdChanged); + Q_PROPERTY(int time_threshold READ time_threshold WRITE set_time_threshold NOTIFY time_thresholdChanged); public: qPrefLocationService(QObject *parent = NULL); @@ -29,8 +29,8 @@ public slots: static void set_time_threshold(int value); signals: - void distance_threshold_changed(int value); - void time_threshold_changed(int value); + void distance_thresholdChanged(int value); + void time_thresholdChanged(int value); private: |