From 2ac097102879afef8f35b438e41bf118117469d1 Mon Sep 17 00:00:00 2001 From: Pawel Date: Tue, 7 Aug 2012 14:12:02 +0200 Subject: [PATCH] 0023370: MSVC++ warnings issued during compilation for 64bits, WNT_FontMapEntry.cxx Replaced 'int' with 'Standard_Size' to avoid compiler warning. --- src/WNT/WNT_FontMapEntry.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/WNT/WNT_FontMapEntry.cxx b/src/WNT/WNT_FontMapEntry.cxx index ccee25e3d6..06430a5a99 100755 --- a/src/WNT/WNT_FontMapEntry.cxx +++ b/src/WNT/WNT_FontMapEntry.cxx @@ -30,7 +30,7 @@ WNT_FontMapEntry :: WNT_FontMapEntry ( const Standard_CString aFontName ) { - int i; + Standard_Size i; char* p; char* fName = new char[ strlen ( aFontName ) + 1 ];