Remove some obsolete not implemented functions.

This commit is contained in:
Mark de Wever 2009-01-31 15:39:03 +00:00
parent 7854e4e61b
commit 8c4cfcdb0c
2 changed files with 0 additions and 16 deletions

View File

@ -56,17 +56,5 @@ void tscroll_label::finalize_subclass()
lbl->set_can_wrap(true);
}
void tscroll_label::content_draw_background(surface& /*frame_buffer*/)
{
assert(false); //fixme implement
}
void tscroll_label::
content_populate_dirty_list(twindow& /*caller*/,
const std::vector<twidget*>& /*call_stack*/)
{
assert(false); //fixme implement
}
} // namespace gui2

View File

@ -76,10 +76,6 @@ private:
const std::string& get_control_type() const
{ static const std::string type = "scroll_label"; return type; }
void content_draw_background(surface& frame_buffer);
void content_populate_dirty_list(twindow& caller,
const std::vector<twidget*>& call_stack);
};
} // namespace gui2