| 1017 | |
| 1018 | struct DeliveredCargoGraphWindow : BaseCompanyGraphWindow { |
| 1019 | DeliveredCargoGraphWindow(WindowDesc &desc, WindowNumber window_number) : |
| 1020 | BaseCompanyGraphWindow(desc, STR_JUST_COMMA) |
| 1021 | { |
| 1022 | this->num_on_x_axis = GRAPH_NUM_MONTHS; |
| 1023 | this->num_vert_lines = GRAPH_NUM_MONTHS; |
| 1024 | this->draw_dates = !TimerGameEconomy::UsingWallclockUnits(); |
| 1025 | |
| 1026 | this->InitializeWindow(window_number); |
| 1027 | } |
| 1028 | |
| 1029 | OverflowSafeInt64 GetGraphData(const Company *c, int j) override |
| 1030 | { |
nothing calls this directly
no test coverage detected