From a8070263366171208f93f9e0613ddb3e717cbf3d Mon Sep 17 00:00:00 2001 From: rubidium Date: Wed, 9 Sep 2009 12:41:51 +0000 Subject: (svn r17487) -Fix: silence some MSVC warnings --- src/company_cmd.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/company_cmd.cpp') diff --git a/src/company_cmd.cpp b/src/company_cmd.cpp index e80599b62..9053fa987 100644 --- a/src/company_cmd.cpp +++ b/src/company_cmd.cpp @@ -77,8 +77,8 @@ Company::~Company() */ void Company::PostDestructor(size_t index) { - InvalidateWindowData(WC_GRAPH_LEGEND, 0, index); - InvalidateWindowData(WC_PERFORMANCE_DETAIL, 0, index); + InvalidateWindowData(WC_GRAPH_LEGEND, 0, (int)index); + InvalidateWindowData(WC_PERFORMANCE_DETAIL, 0, (int)index); } /** -- cgit v1.2.3-54-g00ecf