*** gui/ListWidget.cpp~	Sun Oct 22 13:50:13 2006
--- gui/ListWidget.cpp	Thu Mar 15 21:13:29 2007
***************
*** 67,86 ****
--- 67,87 ----
  	_editable = true;
  
  	_textWidth = new int[_entriesPerPage];
  
  	for (int i = 0; i < _entriesPerPage; i++)
  		_textWidth[i] = 0;
  }
  
  ListWidget::~ListWidget() {
  	delete[] _textWidth;
+ 	delete _scrollBar;
  }
  
  Widget *ListWidget::findWidget(int x, int y) {
  	if (x >= _w - _scrollBarWidth)
  		return _scrollBar;
  
  	return this;
  }
  
  void ListWidget::setSelected(int item) {
