From 57d73eca1e99e0facb84658df0a53be385d3103d Mon Sep 17 00:00:00 2001 From: Joel Holdsworth Date: Fri, 9 Jan 2009 19:49:57 +0000 Subject: [PATCH] Removed an obselete constant --- src/gui/widgets/timeline/timeline-layout-helper.cpp | 4 +--- src/gui/widgets/timeline/timeline-layout-helper.hpp | 7 ------- 2 files changed, 1 insertion(+), 10 deletions(-) diff --git a/src/gui/widgets/timeline/timeline-layout-helper.cpp b/src/gui/widgets/timeline/timeline-layout-helper.cpp index 4ee0824e9..2cce2d9b6 100644 --- a/src/gui/widgets/timeline/timeline-layout-helper.cpp +++ b/src/gui/widgets/timeline/timeline-layout-helper.cpp @@ -36,9 +36,7 @@ using namespace util; namespace gui { namespace widgets { namespace timeline { - -const int TimelineLayoutHelper::AnimationTimeout = 20; // 20ms - + TimelineLayoutHelper::TimelineLayoutHelper(TimelineWidget &owner) : timelineWidget(owner), totalHeight(0), diff --git a/src/gui/widgets/timeline/timeline-layout-helper.hpp b/src/gui/widgets/timeline/timeline-layout-helper.hpp index 05e9ea8dc..d56caf9d3 100644 --- a/src/gui/widgets/timeline/timeline-layout-helper.hpp +++ b/src/gui/widgets/timeline/timeline-layout-helper.hpp @@ -240,13 +240,6 @@ protected: * @see on_animation_tick() **/ bool is_animating; - -protected: - - /** - * The frequencey of animation timer ticks in milliseconds. - **/ - static const int AnimationTimeout; }; } // namespace timeline