Skip to content

Commit

Permalink
build fix for vdr 2.1.4
Browse files Browse the repository at this point in the history
- renamed ChannelChange() -> ChannelsChanged()
  • Loading branch information
pipelka committed Feb 10, 2014
1 parent 2bc59ad commit 87ed46a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/xvdr/xvdrclient.c
Expand Up @@ -277,7 +277,7 @@ void cXVDRClient::TimerChange()
}
}

void cXVDRClient::ChannelChange()
void cXVDRClient::ChannelsChanged()
{
cMutexLock lock(&m_msgLock);

Expand Down
2 changes: 1 addition & 1 deletion src/xvdr/xvdrclient.h
Expand Up @@ -94,7 +94,7 @@ class cXVDRClient : public cThread
cXVDRClient(int fd, unsigned int id);
virtual ~cXVDRClient();

void ChannelChange();
void ChannelsChanged();
void RecordingsChange();
void TimerChange();

Expand Down
2 changes: 1 addition & 1 deletion src/xvdr/xvdrserver.c
Expand Up @@ -295,7 +295,7 @@ void cXVDRServer::Action(void)
{
INFOLOG("Checking for channel updates ...");
for (ClientList::iterator i = m_clients.begin(); i != m_clients.end(); i++)
(*i)->ChannelChange();
(*i)->ChannelsChanged();
channelReloadTrigger = false;
INFOLOG("Done.");
}
Expand Down

0 comments on commit 87ed46a

Please sign in to comment.