summaryrefslogtreecommitdiff
path: root/timer_thread.h
diff options
context:
space:
mode:
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);
};