diff options
author | Johann Friedrichs <johann.friedrichs@web.de> | 2017-07-30 13:00:22 +0200 |
---|---|---|
committer | Frank Neumann <fnu@yavdr.org> | 2017-07-30 13:00:22 +0200 |
commit | c804b85247f2ae8e3ba412b2e266bc3fed51d1ae (patch) | |
tree | 57c4b46a37bb9d8d8ab8b8ef2cfcf69bdcaf0546 /timer_thread.c | |
parent | 65aabbfb1f7ffd79e739f77360ff8f21cf70fb50 (diff) | |
download | vdr-plugin-epgsearch-c804b85247f2ae8e3ba412b2e266bc3fed51d1ae.tar.gz vdr-plugin-epgsearch-c804b85247f2ae8e3ba412b2e266bc3fed51d1ae.tar.bz2 |
Use namespace for svdrpclient.
Diffstat (limited to 'timer_thread.c')
-rw-r--r-- | timer_thread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/timer_thread.c b/timer_thread.c index feef7b3..ba82c41 100644 --- a/timer_thread.c +++ b/timer_thread.c @@ -76,7 +76,7 @@ void cTimerThread::Stop(void) { void cTimerThread::Action(void) { m_Active = true; - if (EPGSearchConfig.useExternalSVDRP && !cSVDRPClient::SVDRPSendCmd) + if (EPGSearchConfig.useExternalSVDRP && !epgsSVDRP::cSVDRPClient::SVDRPSendCmd) { LogFile.eSysLog("ERROR - SVDRPSend script not specified or does not exist (use -f option)"); m_Active = false; |