From f29c177351d7b4f44b9bfab25866495ba8d7fe39 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Sun, 17 Mar 2002 00:19:43 +0000 Subject: [PATCH] Fixed compilation error and a stupid typo git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14643 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- contrib/src/ogl/basic.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ++; -- 2.50.0