Re: [Deinterlace-discuss] Bugs in scheduling code
Brought to you by:
adcockj,
dschmelzer
|
From: John A. <Jo...@ad...> - 2007-03-01 07:26:25
|
> Code from the new patch:
> ------------------------------------
> char* CSchedule::getTimeStr() const
> {
> static char chTime[6];
> strcpy(chTime,m_time_start.Format("%H:%M").GetBuffer());
> return chTime;
> }
> ------------------------------------
Function signiture really should be=20
const char* CSchedule::getTimeStr() const
But basically this looks fine to me.
John
|