From: Vadim Zeitlin Date: Sat, 15 Mar 2008 23:44:02 +0000 (+0000) Subject: correct typo in wxDIR_STOP X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/684fc22bcca0649cb8d2565e1fcbe528c32e0290?ds=sidebyside correct typo in wxDIR_STOP git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52554 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/interface/dir.h b/interface/dir.h index 0009ab1b80..cb9ca73917 100644 --- a/interface/dir.h +++ b/interface/dir.h @@ -51,7 +51,7 @@ class wxDirTraverser { public: /** - This function is called for each directory. It may return @c wxSIR_STOP + This function is called for each directory. It may return @c wxDIR_STOP to abort traversing completely, @c wxDIR_IGNORE to skip this directory but continue with others or @c wxDIR_CONTINUE to enumerate all files and subdirectories in this directory. @@ -69,7 +69,7 @@ public: /** This function is called for each directory which we failed to open for - enumerating. It may return @c wxSIR_STOP to abort traversing completely, + enumerating. It may return @c wxDIR_STOP to abort traversing completely, @c wxDIR_IGNORE to skip this directory but continue with others or @c wxDIR_CONTINUE to retry opening this directory once again. The base class version always returns @c wxDIR_IGNORE.