Skip to content

Commit

Permalink
ci: missing header
Browse files Browse the repository at this point in the history
  • Loading branch information
jcelerier committed Nov 22, 2024
1 parent c66ff95 commit e211b1a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/plugins/score-plugin-js/JS/Qml/DeviceEnumerator.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,12 @@ struct DeviceIdentifier
{
W_GADGET(DeviceIdentifier)
public:
QString name;
Device::DeviceSettings settings;
QString name{};
Device::DeviceSettings settings{};
Device::ProtocolFactory* protocol{};

W_PROPERTY(QString, MEMBER name)
W_PROPERTY(Device::DeviceSettings, MEMBER settings)
};

class GlobalDeviceEnumerator : public QObject
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#include <JS/Qml/EditContext.hpp>
#include <JS/Qml/DeviceEnumerator.hpp>
#include <JS/Qml/QtMetatypes.hpp>

#include <wobjectimpl.h>
Expand Down

0 comments on commit e211b1a

Please sign in to comment.