Coding style: add tab before Q_OBJECT

In virtually all cases we use a tab before Q_OBJECT. Fix the four
exceptions.

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
Berthold Stoeger 2019-03-12 07:24:54 +01:00 committed by Dirk Hohndel
parent 59e602447b
commit 59f1191d0c
2 changed files with 4 additions and 4 deletions

View file

@ -12,7 +12,7 @@
#include <QSortFilterProxyModel>
class LocationInformationWidget : public QGroupBox {
Q_OBJECT
Q_OBJECT
public:
LocationInformationWidget(QWidget *parent = 0);
bool eventFilter(QObject*, QEvent*) override;

View file

@ -13,7 +13,7 @@ struct dive;
struct dive_trip;
class LocationInformationModel : public QAbstractTableModel {
Q_OBJECT
Q_OBJECT
public:
// Common columns, roles and accessor function for all dive-site models.
// Thus, different views can connect to different models.
@ -42,7 +42,7 @@ private:
// To access only divesites at the given GPS coordinates with the exception of a given dive site
class GPSLocationInformationModel : public QSortFilterProxyModel {
Q_OBJECT
Q_OBJECT
private:
const struct dive_site *ignoreDs;
location_t location;
@ -54,7 +54,7 @@ public:
};
class GeoReferencingOptionsModel : public QStringListModel {
Q_OBJECT
Q_OBJECT
public:
static GeoReferencingOptionsModel *instance();
private: