(svn r20781) -Fix (r20780): FinishInitNested reset this->owner, so set it afterwards

pull/155/head
yexo 14 years ago
parent 7c27a6c4ee
commit 9a1e01ab38

@ -191,10 +191,9 @@ public:
this->BuildVehicleList();
this->SortVehicleList();
this->owner = vli.company;
this->groups.ForceRebuild();
this->groups.NeedResort();
this->BuildGroupList(this->owner);
this->BuildGroupList(vli.company);
this->groups.Sort(&GroupNameSorter);
this->GetWidget<NWidgetCore>(GRP_WIDGET_CAPTION)->widget_data = STR_VEHICLE_LIST_TRAIN_CAPTION + this->vli.vtype;
@ -206,6 +205,7 @@ public:
this->GetWidget<NWidgetCore>(GRP_WIDGET_REPLACE_PROTECTION)->widget_data += this->vli.vtype;
this->FinishInitNested(desc, window_number);
this->owner = vli.company;
}
~VehicleGroupWindow()
@ -301,7 +301,7 @@ public:
this->BuildVehicleList();
this->SortVehicleList();
this->BuildGroupList(owner);
this->BuildGroupList(this->owner);
this->groups.Sort(&GroupNameSorter);
this->group_sb->SetCount(this->groups.Length());

Loading…
Cancel
Save