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:
jan Iversen 2019-02-11 20:27:30 +01:00 committed by Dirk Hohndel
parent 653a2baf11
commit 90b8ccb705
12 changed files with 135 additions and 135 deletions

View file

@ -7,13 +7,13 @@
class qPrefPartialPressureGas : public QObject {
Q_OBJECT
Q_PROPERTY(bool phe READ phe WRITE set_phe NOTIFY pheChanged);
Q_PROPERTY(double phe_threshold READ phe_threshold WRITE set_phe_threshold NOTIFY phe_thresholdChanged);
Q_PROPERTY(bool pn2 READ pn2 WRITE set_pn2 NOTIFY pn2Changed);
Q_PROPERTY(double pn2_threshold READ pn2_threshold WRITE set_pn2_threshold NOTIFY pn2_thresholdChanged);
Q_PROPERTY(bool po2 READ po2 WRITE set_po2 NOTIFY po2Changed);
Q_PROPERTY(double po2_threshold_max READ po2_threshold_max WRITE set_po2_threshold_max NOTIFY po2_threshold_maxChanged);
Q_PROPERTY(double po2_threshold_min READ po2_threshold_min WRITE set_po2_threshold_min NOTIFY po2_threshold_minChanged);
Q_PROPERTY(bool phe READ phe WRITE set_phe NOTIFY pheChanged)
Q_PROPERTY(double phe_threshold READ phe_threshold WRITE set_phe_threshold NOTIFY phe_thresholdChanged)
Q_PROPERTY(bool pn2 READ pn2 WRITE set_pn2 NOTIFY pn2Changed)
Q_PROPERTY(double pn2_threshold READ pn2_threshold WRITE set_pn2_threshold NOTIFY pn2_thresholdChanged)
Q_PROPERTY(bool po2 READ po2 WRITE set_po2 NOTIFY po2Changed)
Q_PROPERTY(double po2_threshold_max READ po2_threshold_max WRITE set_po2_threshold_max NOTIFY po2_threshold_maxChanged)
Q_PROPERTY(double po2_threshold_min READ po2_threshold_min WRITE set_po2_threshold_min NOTIFY po2_threshold_minChanged)
public:
static qPrefPartialPressureGas *instance();