dwww Home | Show directory contents | Find package

# qproperty-type-mismatch

Warns when any of the functions or variables declared in a Q_PROPERTY have types, arguments or return types differing with the Q_PROPERTY.

That is, this will warn on every member function here :

```
class Widget : public QWidget {
Q_OBJECT
Q_PROPERTY(bool foo READ foo WRITE setFoo NOTIFY fooChanged)

public:
  int foo() const;
  void setFoo(float);
signals:
  void fooChanged();
}
```

Generated by dwww version 1.15 on Mon Jun 24 13:45:36 CEST 2024.