From: Václav Slavík Date: Sun, 5 Nov 2000 18:35:48 +0000 (+0000) Subject: fixed typo (IsOK instead of IsOk) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/237387ad3135f006524768141b29519130c3293f fixed typo (IsOK instead of IsOk) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@8695 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/generic/dirctrlg.cpp b/src/generic/dirctrlg.cpp index 04542809fd..4ff52eddb7 100644 --- a/src/generic/dirctrlg.cpp +++ b/src/generic/dirctrlg.cpp @@ -869,7 +869,7 @@ bool wxGenericDirCtrl::ExpandPath(const wxString& path) bool done = FALSE; wxTreeItemId id = FindChild(m_rootId, path, done); wxTreeItemId lastId = id; // The last non-zero id - while (id.IsOK() && !done) + while (id.IsOk() && !done) { ExpandDir(id);