diff options
author | Christian Wieninger <cwieninger (at) gmx (dot) de> | 2008-02-20 17:47:50 +0100 |
---|---|---|
committer | Christian Wieninger <cwieninger (at) gmx (dot) de> | 2008-02-20 17:47:50 +0100 |
commit | 1ca3263b1febbef86071eaaa4e8eda0bbac578fa (patch) | |
tree | 51acae08ac515eba84e01c76261a7735665dd601 /timer_thread.h | |
parent | 57d0cbd75c591e450e4d11a45ac6a016de48b8cf (diff) | |
download | vdr-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.h | 4 |
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); }; |