Skip to content

Commit

Permalink
[ci] More JS-related fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jcelerier committed Jul 29, 2024
1 parent d605ad4 commit 14a88c8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/plugins/score-plugin-js/JS/ApplicationPlugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
#include <JS/Qml/Utils.hpp>

#if __has_include(<QQuickWindow>)
#include <QGuiApplication>
#include <QQuickItem>
#include <QQuickWindow>
#endif
Expand Down
4 changes: 2 additions & 2 deletions src/plugins/score-plugin-js/JS/Qml/PortSource.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ void PortSource::rebuild()
return;

auto& model = doc->model().modelDelegate();
auto processes
= model.findChildren<Process::ProcessModel*>(Qt::FindChildrenRecursively);
auto processes = model.findChildren<Process::ProcessModel*>(
QString{}, Qt::FindChildrenRecursively);

Process::ProcessModel* process = nullptr;
for(auto proc : processes)
Expand Down

0 comments on commit 14a88c8

Please sign in to comment.