Remove the unused function twidget::can_shrink_width.

This commit is contained in:
Mark de Wever 2009-05-21 19:12:33 +00:00
parent 0fd7c53060
commit 6bc4253cea
2 changed files with 0 additions and 6 deletions

View File

@ -34,9 +34,6 @@ public:
/** Inherited from twidget. */
bool can_wrap() const { return can_wrap_; }
/** Inherited from twidget. */
bool can_shrink_width() const { return true; }
/** Inherited from tcontrol. */
void set_active(const bool active)
{ if(get_active() != active) set_state(active ? ENABLED : DISABLED); }

View File

@ -280,9 +280,6 @@ public:
virtual void layout_use_horizontal_scrollbar(const unsigned /*maximum_width*/)
{ assert(has_horizontal_scrollbar()); }
/** Can the widget reduce its width. */
virtual bool can_shrink_width() const { return false; }
/**
* Does the widget have a vertical scrollbar.
*