]> git.saurik.com Git - wxWidgets.git/commitdiff
Fix for MSVC 6 compile error
authorRobin Dunn <robin@alldunn.com>
Fri, 13 Jan 2006 05:22:16 +0000 (05:22 +0000)
committerRobin Dunn <robin@alldunn.com>
Fri, 13 Jan 2006 05:22:16 +0000 (05:22 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36860 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/contrib/activex/wxie/wxactivex.cpp

index 39b178e441df15085e0c80c1b4b372221ea4722e..2e13d8d5de70516515faa331db7cf4eeb190bfad 100644 (file)
@@ -1172,7 +1172,8 @@ void wxActiveX::GetTypeInfo(ITypeInfo *ti, bool defInterface, bool defEventSink)
 
         // Get properties
         // See bug #1280715 in the wxActiveX SF project
-        for (int i = 0; i < ta->cVars; i++) {
+        int i;
+        for (i = 0; i < ta->cVars; i++) {
             VARDESC FAR *vd = NULL;
 
             typeInfo->GetVarDesc(i, &vd) ;
@@ -1197,7 +1198,7 @@ void wxActiveX::GetTypeInfo(ITypeInfo *ti, bool defInterface, bool defEventSink)
         }        
 
         // Get Function Names
-        for (int i = 0; i < ta->cFuncs; i++)
+        for (i = 0; i < ta->cFuncs; i++)
         {
             FUNCDESC FAR *fd = NULL;