Skip to content

Commit

Permalink
V2 services: Correct some errors in program list
Browse files Browse the repository at this point in the history
Some details were left out of the conversion of program list.
  • Loading branch information
bennettpeter committed Sep 3, 2021
1 parent 46a1402 commit bc8fc69
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 3 additions & 1 deletion mythtv/programs/mythbackend/servicesv2/v2programAndChannel.h
Expand Up @@ -161,7 +161,7 @@ class V2Program : public QObject

public:

Q_INVOKABLE explicit V2Program(QObject *parent = nullptr)
explicit V2Program(QObject *parent = nullptr)
: QObject ( parent ),
m_Repeat ( false ),
m_Stars ( 0 ),
Expand Down Expand Up @@ -221,6 +221,8 @@ class V2Program : public QObject
Cast()->Copy( src->m_Cast );
}

private:
Q_DISABLE_COPY(V2Program);
};

inline V2Program *V2ChannelInfo::AddNewProgram()
Expand Down
2 changes: 2 additions & 0 deletions mythtv/programs/mythbackend/servicesv2/v2programList.h
Expand Up @@ -75,4 +75,6 @@ class V2ProgramList : public QObject
Q_DISABLE_COPY(V2ProgramList);
};

Q_DECLARE_METATYPE(V2ProgramList*)

#endif

0 comments on commit bc8fc69

Please sign in to comment.