summaryrefslogtreecommitdiff
path: root/timeline.c
diff options
context:
space:
mode:
Diffstat (limited to 'timeline.c')
-rw-r--r--timeline.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/timeline.c b/timeline.c
index 143a6a6..d48cb4b 100644
--- a/timeline.c
+++ b/timeline.c
@@ -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();