From 44e0daa1d2561e8e165d81848bc0092910a955ad Mon Sep 17 00:00:00 2001 From: =?utf8?q?W=C5=82odzimierz=20Skiba?= Date: Mon, 4 Oct 2004 20:03:27 +0000 Subject: [PATCH] Warning fixes to most detailed warning output of OpenWatcom. Tested under Borland, DigitalMars and MinGW. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29653 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- utils/tex2rtf/src/readshg.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/tex2rtf/src/readshg.cpp b/utils/tex2rtf/src/readshg.cpp index 6d3ffaff2b..0b6c128b3b 100644 --- a/utils/tex2rtf/src/readshg.cpp +++ b/utils/tex2rtf/src/readshg.cpp @@ -90,7 +90,7 @@ int ParseSHG( const wxChar* fileName, HotSpot **hotspots) if(nMacroStrings > 0) fseek( fSHG, nMacroStrings, SEEK_CUR); //nMacroStrings is byte offset... // and, at the last, read through the strings: hotspot-id[ignored], then topic/macro - int c; + int c; for( i = 0 ; i < nHotspots ; ++i) { while( (c = fgetc( fSHG)) != 0) @@ -99,7 +99,7 @@ int ParseSHG( const wxChar* fileName, HotSpot **hotspots) int j = 0; while( (c = fgetc( fSHG)) != 0) { - (*hotspots)[i].szHlpTopic_Macro[j] = c; + (*hotspots)[i].szHlpTopic_Macro[j] = (wxChar)c; ++j; } (*hotspots)[i].szHlpTopic_Macro[j] = 0; -- 2.50.0