fix improperly renamed functions

This commit is contained in:
Martin Konecny 2012-07-25 18:42:46 -04:00
parent 1f3cbd8aba
commit 275efb254a
2 changed files with 4 additions and 4 deletions

View file

@ -233,7 +233,7 @@ class Application_Model_Scheduler
$nextDT = $this->nowDT;
$length = bcsub($nEpoch , $sEpoch , 6);
$cliplength = Application_Model_Playlist::secondsToPlaylistTime($length);
$cliplength = Application_Common_DateHelper::secondsToPlaylistTime($length);
//fillers are for only storing a chunk of time space that has already passed.
$filler = new CcSchedule();
@ -574,11 +574,11 @@ class Application_Model_Scheduler
$sEpoch = $removedItem->getDbStarts('U.u');
$length = bcsub($nEpoch , $sEpoch , 6);
$cliplength = Application_Model_Playlist::secondsToPlaylistTime($length);
$cliplength = Application_Common_DateHelper::secondsToPlaylistTime($length);
$cueinSec = Application_Model_Playlist::playlistTimeToSeconds($removedItem->getDbCueIn());
$cueOutSec = bcadd($cueinSec , $length, 6);
$cueout = Application_Model_Playlist::secondsToPlaylistTime($cueOutSec);
$cueout = Application_Common_DateHelper::secondsToPlaylistTime($cueOutSec);
$removedItem->setDbCueOut($cueout)
->setDbClipLength($cliplength)