projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
cgimagecreate from wxbitmap crashes 10.2 - turn off. Put in right click handler to...
[wxWidgets.git]
/
src
/
os2
/
nativdlg.cpp
diff --git
a/src/os2/nativdlg.cpp
b/src/os2/nativdlg.cpp
index fa5280660855e1401a4e1400318c4b530baa5668..16c829462076a7a019465b65ed7d903b2d337e09 100644
(file)
--- a/
src/os2/nativdlg.cpp
+++ b/
src/os2/nativdlg.cpp
@@
-137,17
+137,17
@@
wxWindow* wxWindow::GetWindowChild1 (
if (m_windowId == vId)
return this;
if (m_windowId == vId)
return this;
- wxWindowList::
Node* pN
ode = GetChildren().GetFirst();
+ wxWindowList::
compatibility_iterator n
ode = GetChildren().GetFirst();
- while (
pN
ode)
+ while (
n
ode)
{
{
- wxWindow* pChild =
pN
ode->GetData();
+ wxWindow* pChild =
n
ode->GetData();
wxWindow* pWin = pChild->GetWindowChild1(vId);
if (pWin)
return pWin;
wxWindow* pWin = pChild->GetWindowChild1(vId);
if (pWin)
return pWin;
-
pNode = pN
ode->GetNext();
+
node = n
ode->GetNext();
}
return NULL;
} // end of wxWindow::GetWindowChild1
}
return NULL;
} // end of wxWindow::GetWindowChild1