From: Robin Dunn Date: Sun, 17 Mar 2002 00:19:43 +0000 (+0000) Subject: Fixed compilation error and a stupid typo X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/f29c177351d7b4f44b9bfab25866495ba8d7fe39 Fixed compilation error and a stupid typo git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14643 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/contrib/src/ogl/basic.cpp b/contrib/src/ogl/basic.cpp index 87a4b5e550..a78d178bf5 100644 --- a/contrib/src/ogl/basic.cpp +++ b/contrib/src/ogl/basic.cpp @@ -834,9 +834,9 @@ void wxShape::NameRegions(const wxString& parentName) buff.Empty(); wxShape *child = (wxShape *)node->Data(); if (parentName.Length() > 0) - buff << parentName << "." << i; + buff << parentName << "." << j; else - buff << i; + buff << j; child->NameRegions(buff); node = node->Next(); j ++;