From 33e18c236da7a21e796b2d130060367759753acd Mon Sep 17 00:00:00 2001 From: rubidium Date: Tue, 27 May 2008 21:41:00 +0000 Subject: (svn r13301) -Fix [FS#1997]: resolve more MSVC 9 x64 warnings. --- src/station_gui.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/station_gui.cpp') diff --git a/src/station_gui.cpp b/src/station_gui.cpp index b3598c8a2..cf7935ef5 100644 --- a/src/station_gui.cpp +++ b/src/station_gui.cpp @@ -682,7 +682,7 @@ typedef std::list CargoDataList; */ struct StationViewWindow : public Window { uint32 cargo; ///< Bitmask of cargo types to expand - uint16 cargo_rows[NUM_CARGO]; ///< Header row for each cargo type + size_t cargo_rows[NUM_CARGO]; ///< Header row for each cargo type StationViewWindow(const WindowDesc *desc, WindowNumber window_number) : Window(desc, window_number) { @@ -751,7 +751,7 @@ struct StationViewWindow : public Window { } } } - SetVScrollCount(this, cargolist.size() + 1); // update scrollbar + SetVScrollCount(this, (int)cargolist.size() + 1); // update scrollbar /* disable some buttons */ this->SetWidgetDisabledState(SVW_RENAME, st->owner != _local_player); -- cgit v1.2.3-54-g00ecf