void MainPageModelItem::setEventId(const QString &id)
{
    if(p->eventId == id)
        return;

    p->eventId = id;
    emit eventIdChanged();
}
Beispiel #2
0
MeeTvChannel::MeeTvChannel(const QHtspChannel& channel, QObject *parent) :
    QHtspChannel(channel, parent), m_event(0), m_eventModel(0), m_meetvService(0)
{
    connect(this, SIGNAL(eventIdChanged()), this, SLOT(_resetEvent()));
}
Beispiel #3
0
MeeTvChannel::MeeTvChannel(QObject *parent) :
    QHtspChannel(MeeTvHtsp::instance(), parent), m_event(0), m_eventModel(0), m_meetvService(0)
{
    connect(this, SIGNAL(eventIdChanged()), this, SLOT(_resetEvent()));
}