build: fix PostReloadHook resolution in LSP

This commit is contained in:
outfoxxed 2025-07-15 19:03:27 -07:00
parent a45fc03c7d
commit 4d8055f1cd
Signed by untrusted user: outfoxxed
GPG key ID: 4C88A185FB89301E
9 changed files with 20 additions and 5 deletions

View file

@ -171,7 +171,11 @@ public:
[[nodiscard]] QBindable<QString> bindableDesktopEntry() const { return &this->bDesktopEntry; };
[[nodiscard]] QBindable<QString> bindableImage() const { return &this->bImage; };
[[nodiscard]] QBindable<bool> bindableHasInlineReply() const { return &this->bHasInlineReply; };
[[nodiscard]] QBindable<QString> bindableInlineReplyPlaceholder() const { return &this->bInlineReplyPlaceholder; };
[[nodiscard]] QBindable<QString> bindableInlineReplyPlaceholder() const {
return &this->bInlineReplyPlaceholder;
};
[[nodiscard]] QBindable<QVariantMap> bindableHints() const { return &this->bHints; };
[[nodiscard]] NotificationCloseReason::Enum closeReason() const;