(svn r18088) -Codechange: remove CompareWidgetArrays

This commit is contained in:
rubidium
2009-11-15 10:38:04 +00:00
parent 9396a701fe
commit 884561f431
3 changed files with 3 additions and 61 deletions

View File

@@ -81,7 +81,7 @@ WindowDesc::WindowDesc(int16 left, int16 top, int16 min_width, int16 min_height,
const Widget *WindowDesc::GetWidgets() const
{
if (this->nwid_parts != NULL) {
InitializeWidgetArrayFromNestedWidgets(this->nwid_parts, this->nwid_length, NULL, &this->new_widgets);
InitializeWidgetArrayFromNestedWidgets(this->nwid_parts, this->nwid_length, &this->new_widgets);
}
const Widget *wids = this->new_widgets;
assert(wids != NULL);