(svn r23469) -Fix (r23468): gcc warning about initialization order

This commit is contained in:
yexo 2011-12-10 01:49:50 +00:00
parent e2a9dd1b0a
commit 1db365d0e2
1 changed files with 2 additions and 2 deletions

View File

@ -374,9 +374,9 @@ public:
*/
NetworkContentListWindow(const WindowDesc *desc, bool select_all) :
QueryStringBaseWindow(EDITBOX_MAX_SIZE),
auto_select(select_all),
selected(NULL),
list_pos(0),
auto_select(select_all)
list_pos(0)
{
this->CreateNestedTree(desc);
this->vscroll = this->GetScrollbar(NCLWW_SCROLLBAR);