summaryrefslogtreecommitdiff
path: root/timer_thread.h
diff options
context:
space:
mode:
authorChristian Wieninger <cwieninger (at) gmx (dot) de>2008-02-20 17:47:50 +0100
committerChristian Wieninger <cwieninger (at) gmx (dot) de>2008-02-20 17:47:50 +0100
commit1ca3263b1febbef86071eaaa4e8eda0bbac578fa (patch)
tree51acae08ac515eba84e01c76261a7735665dd601 /timer_thread.h
parent57d0cbd75c591e450e4d11a45ac6a016de48b8cf (diff)
downloadvdr-plugin-epgsearch-1ca3263b1febbef86071eaaa4e8eda0bbac578fa.tar.gz
vdr-plugin-epgsearch-1ca3263b1febbef86071eaaa4e8eda0bbac578fa.tar.bz2
replaced asprintf with cString::sprintf and a wrapper function
Diffstat (limited to 'timer_thread.h')
-rw-r--r--timer_thread.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/timer_thread.h b/timer_thread.h
index 09d90fa..a4ee1f2 100644
--- a/timer_thread.h
+++ b/timer_thread.h
@@ -41,7 +41,7 @@ typedef enum
class cTimerThread: public cThread {
private:
static cTimerThread *m_Instance;
- char* m_cmd;
+ cString m_cmd;
static TimerThreadStatus m_Status;
protected:
virtual void Action(void);
@@ -52,7 +52,7 @@ public:
void SetStatus(TimerThreadStatus Status) { LogFile.eSysLog("%d", int(Status)); cTimerThread::m_Status = Status; }
cTimerThread();
virtual ~cTimerThread();
- void Init(char*);
+ void Init(cString);
void Exit(void);
};