summaryrefslogtreecommitdiffstats
path: root/core/settings/qPrefGeocoding.h
diff options
context:
space:
mode:
authorGravatar jan Iversen <jani@apache.org>2019-02-11 20:27:30 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2019-12-05 11:48:26 -0800
commit90b8ccb705ff20f742d6905587eeb93e5943e1f2 (patch)
treec5aedeff06c71dc4346589eabb28bcd668bc0a40 /core/settings/qPrefGeocoding.h
parent653a2baf111284171f0a2d25d6d9a0e82979f6d1 (diff)
downloadsubsurface-90b8ccb705ff20f742d6905587eeb93e5943e1f2.tar.gz
core/settings: remove Q_PROPERTY warning in qPref headers
Q_PROPERTY contains an internal ";", making clang produce a warning when ending the line with a ; Remove ; at the end of Q_PROPERTY lines. Signed-off-by: Jan Iversen <jani@apache.org>
Diffstat (limited to 'core/settings/qPrefGeocoding.h')
-rw-r--r--core/settings/qPrefGeocoding.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/settings/qPrefGeocoding.h b/core/settings/qPrefGeocoding.h
index 81fc70f58..f2eb95fbc 100644
--- a/core/settings/qPrefGeocoding.h
+++ b/core/settings/qPrefGeocoding.h
@@ -8,9 +8,9 @@
class qPrefGeocoding : public QObject {
Q_OBJECT
- Q_PROPERTY(taxonomy_category first_taxonomy_category READ first_taxonomy_category WRITE set_first_taxonomy_category NOTIFY first_taxonomy_categoryChanged);
- Q_PROPERTY(taxonomy_category second_taxonomy_category READ second_taxonomy_category WRITE set_second_taxonomy_category NOTIFY second_taxonomy_categoryChanged);
- Q_PROPERTY(taxonomy_category third_taxonomy_category READ third_taxonomy_category WRITE set_third_taxonomy_category NOTIFY third_taxonomy_categoryChanged);
+ Q_PROPERTY(taxonomy_category first_taxonomy_category READ first_taxonomy_category WRITE set_first_taxonomy_category NOTIFY first_taxonomy_categoryChanged)
+ Q_PROPERTY(taxonomy_category second_taxonomy_category READ second_taxonomy_category WRITE set_second_taxonomy_category NOTIFY second_taxonomy_categoryChanged)
+ Q_PROPERTY(taxonomy_category third_taxonomy_category READ third_taxonomy_category WRITE set_third_taxonomy_category NOTIFY third_taxonomy_categoryChanged)
public:
static qPrefGeocoding *instance();