1
0
Fork 0

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

release/1.2
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) : NetworkContentListWindow(const WindowDesc *desc, bool select_all) :
QueryStringBaseWindow(EDITBOX_MAX_SIZE), QueryStringBaseWindow(EDITBOX_MAX_SIZE),
auto_select(select_all),
selected(NULL), selected(NULL),
list_pos(0), list_pos(0)
auto_select(select_all)
{ {
this->CreateNestedTree(desc); this->CreateNestedTree(desc);
this->vscroll = this->GetScrollbar(NCLWW_SCROLLBAR); this->vscroll = this->GetScrollbar(NCLWW_SCROLLBAR);