1
0
Fork 0
forked from len0rd/rockbox

rbutilqt: Add missing 'Q_OBJECT' macros to three classes

Change-Id: I0999c286facc06039a456243f6f0525f939e97d6
This commit is contained in:
Solomon Peachy 2025-05-09 07:50:33 -04:00
parent 35ca67534c
commit 22d72bf369
3 changed files with 3 additions and 2 deletions

View file

@ -30,6 +30,7 @@
// For build info data retrieved from the build server has to be passed.
class PlayerBuildInfo : public QObject
{
Q_OBJECT
public:
enum BuildType {

View file

@ -32,6 +32,7 @@
class System : public QObject
{
Q_OBJECT
public:
System() {}
@ -50,4 +51,3 @@ public:
};
#endif

View file

@ -29,6 +29,7 @@
class Utils : public QObject
{
Q_OBJECT
public:
enum Size {
FilesystemTotal,
@ -61,4 +62,3 @@ public:
};
#endif