mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
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>
This commit is contained in:
parent
653a2baf11
commit
90b8ccb705
12 changed files with 135 additions and 135 deletions
|
|
@ -8,8 +8,8 @@
|
|||
|
||||
class qPrefLocationService : public QObject {
|
||||
Q_OBJECT
|
||||
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);
|
||||
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:
|
||||
static qPrefLocationService *instance();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue