clearTable() can now be used to clear drop-down lists.

git-svn-id: http://yate.null.ro/svn/yate/trunk@2435 acf43c95-373e-0410-b603-e72c3f656dc1
This commit is contained in:
marian 2009-01-14 10:14:27 +00:00
parent f4e7cad0a0
commit 49aa89c844
1 changed files with 3 additions and 0 deletions

View File

@ -1473,6 +1473,9 @@ bool QtWindow::clearTable(const String& name)
case QtWidget::ListBox:
w.list()->clear();
break;
case QtWidget::ComboBox:
w.combo()->clear();
break;
case QtWidget::CustomTable:
ok = w.customTable()->clearTable();
break;