Cleanup removing no longer needed functions.

This commit is contained in:
Mark de Wever 2009-01-02 13:43:11 +00:00
parent e658ecd86b
commit dcb462a53f
2 changed files with 0 additions and 18 deletions

View file

@ -458,12 +458,6 @@ void tscrollbar_container::
}
}
void tscrollbar_container::impl_draw_background(surface& frame_buffer)
{
// Inherited.
tcontainer_::impl_draw_background(frame_buffer);
}
void tscrollbar_container::impl_draw_children(surface& frame_buffer)
{
// Inherited.
@ -472,12 +466,6 @@ void tscrollbar_container::impl_draw_children(surface& frame_buffer)
content_grid_->draw_children(frame_buffer);
}
void tscrollbar_container::impl_draw_foreground(surface& frame_buffer)
{
// Inherited.
tcontainer_::impl_draw_foreground(frame_buffer);
}
void tscrollbar_container::child_populate_dirty_list(twindow& caller,
const std::vector<twidget*>& call_stack)
{

View file

@ -241,15 +241,9 @@ private:
*/
virtual void finalize_subclass() {}
/** Inherited from tcontainer_. */
void impl_draw_background(surface& frame_buffer);
/** Inherited from tcontainer_. */
void impl_draw_children(surface& frame_buffer);
/** Inherited from tcontainer_. */
void impl_draw_foreground(surface& frame_buffer);
/** Inherited from tcontainer_. */
void child_populate_dirty_list(twindow& caller,
const std::vector<twidget*>& call_stack);