docs: remove }; in headers + typo fixes

}; breaks the docgen regex
This commit is contained in:
outfoxxed 2025-07-24 16:44:10 -07:00
parent 3bbf39c67e
commit 4dad447570
No known key found for this signature in database
GPG key ID: 4C88A185FB89301E
14 changed files with 79 additions and 79 deletions

View file

@ -168,9 +168,9 @@ class DBusBindableProperty: public DBusPropertyCore {
public:
explicit DBusBindableProperty() { this->group()->attachProperty(this); }
[[nodiscard]] QString name() const override { return Name; };
[[nodiscard]] QStringView nameRef() const override { return Name; };
[[nodiscard]] bool isRequired() const override { return required; };
[[nodiscard]] QString name() const override { return Name; }
[[nodiscard]] QStringView nameRef() const override { return Name; }
[[nodiscard]] bool isRequired() const override { return required; }
[[nodiscard]] QString valueString() override {
QString str;