diff options
author | louis <louis.braun@gmx.de> | 2015-04-02 15:11:34 +0200 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2015-04-02 15:11:34 +0200 |
commit | 759af0a48df36faf4ffda0d515cabcd6ffd9ee6e (patch) | |
tree | 3cf3d62b2b7539b4c982b8dc6de29d25cabc5d42 /timeline.c | |
parent | fb62699a2d162f92dd73d86fcf5501e3f96eea75 (diff) | |
download | vdr-plugin-tvguideng-759af0a48df36faf4ffda0d515cabcd6ffd9ee6e.tar.gz vdr-plugin-tvguideng-759af0a48df36faf4ffda0d515cabcd6ffd9ee6e.tar.bz2 |
introduced libskindesignerapi
Diffstat (limited to 'timeline.c')
-rw-r--r-- | timeline.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -27,7 +27,7 @@ bool cTimelineElement::IsFullHour(void) { // --- cTimeline ------------------------------------------------------------- -cTimeline::cTimeline(cViewGrid *timelineGrid, cViewElement *timelineDate, cViewElement *timeIndicator, cTimeManager *timeManager) { +cTimeline::cTimeline(skindesignerapi::cViewGrid *timelineGrid, skindesignerapi::cViewElement *timelineDate, skindesignerapi::cViewElement *timeIndicator, cTimeManager *timeManager) { this->timelineGrid = timelineGrid; this->timelineDate = timelineDate; this->timeIndicator = timeIndicator; @@ -76,8 +76,6 @@ void cTimeline::ScrollForward(int stepMinutes) { } void cTimeline::ScrollBack(int stepMinutes) { - time_t startTime = timeManager->GetStart(); - time_t endTime = timeManager->GetEnd(); int numSteps = stepMinutes / 30; for (int i=0; i<numSteps; i++) { cTimelineElement *e = grids.Last(); |