Skip to content

Commit

Permalink
Fix a warning
Browse files Browse the repository at this point in the history
Signed-off-by: falkTX <[email protected]>
  • Loading branch information
falkTX committed Sep 29, 2024
1 parent 4cb04e6 commit 5b7fe8d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ jobs:
- name: Show built files
working-directory: ${{runner.workspace}}/build/bin
run: tree
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: Win32 artifacts
path: ${{runner.workspace}}/build/bin/
Expand Down Expand Up @@ -158,7 +158,7 @@ jobs:
- name: Show built files
working-directory: ${{runner.workspace}}/build/bin
run: tree
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: Win64 artifacts
path: ${{runner.workspace}}/build/bin/
2 changes: 1 addition & 1 deletion distrho/extra/WebViewImpl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1734,7 +1734,7 @@ static bool qtwebengine(const int qtVersion,
}
};

wakeFn = [=, &eventFilter](WebViewRingBuffer* const rb){
wakeFn = [=, &eventFilter](WebViewRingBuffer*){
// NOTE event pointer is deleted by Qt
QEvent* const qevent = new QEvent;
QEvent__init(qevent, 1000 /* QEvent::User */);
Expand Down

0 comments on commit 5b7fe8d

Please sign in to comment.