diff options
author | Marco Bubke <[email protected]> | 2025-04-15 11:08:46 +0200 |
---|---|---|
committer | hjk <[email protected]> | 2025-04-15 09:14:28 +0000 |
commit | a807c28cde6686c20afda0352fd0256a002f20ee (patch) | |
tree | aab0c9df8430a419e662127feb1f2c08e19bcc17 /src/plugins/help | |
parent | 0503f267e282f327f27067e50db657d6b6e5dd7a (diff) |
Fix warning for ';'
The macro already contain a ';'. Removing the argument or
[[maybe_unused]] would maybe even a better approach.
Change-Id: I31750d10a4f252c667e7c0e5e13bf1085dbe11a2
Reviewed-by: hjk <[email protected]>
Diffstat (limited to 'src/plugins/help')
-rw-r--r-- | src/plugins/help/macwebkithelpviewer.mm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/help/macwebkithelpviewer.mm b/src/plugins/help/macwebkithelpviewer.mm index c62ee3d7773..5a4f42b1df3 100644 --- a/src/plugins/help/macwebkithelpviewer.mm +++ b/src/plugins/help/macwebkithelpviewer.mm @@ -703,8 +703,8 @@ DOMRange *MacWebKitHelpViewer::findText(NSString *text, bool forward, bool caseS bool MacWebKitHelpViewer::findText(const QString &text, FindFlags flags, bool incremental, bool fromSearch, bool *wrapped) { - Q_UNUSED(incremental); - Q_UNUSED(fromSearch); + Q_UNUSED(incremental) + Q_UNUSED(fromSearch) @autoreleasepool { if (wrapped) *wrapped = false; |