(svn r20780) -Fix (r20772): group gui only worked properly for the first company

This commit is contained in:
yexo 2010-09-10 13:34:47 +00:00
parent 06678a8ac2
commit fa8bd83036
1 changed files with 2 additions and 2 deletions

View File

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