Removed an obselete constant

This commit is contained in:
Joel Holdsworth 2009-01-09 19:49:57 +00:00
parent 89ce4c94f0
commit 57d73eca1e
2 changed files with 1 additions and 10 deletions

View file

@ -36,9 +36,7 @@ using namespace util;
namespace gui { namespace gui {
namespace widgets { namespace widgets {
namespace timeline { namespace timeline {
const int TimelineLayoutHelper::AnimationTimeout = 20; // 20ms
TimelineLayoutHelper::TimelineLayoutHelper(TimelineWidget &owner) : TimelineLayoutHelper::TimelineLayoutHelper(TimelineWidget &owner) :
timelineWidget(owner), timelineWidget(owner),
totalHeight(0), totalHeight(0),

View file

@ -240,13 +240,6 @@ protected:
* @see on_animation_tick() * @see on_animation_tick()
**/ **/
bool is_animating; bool is_animating;
protected:
/**
* The frequencey of animation timer ticks in milliseconds.
**/
static const int AnimationTimeout;
}; };
} // namespace timeline } // namespace timeline