]> git.saurik.com Git - wxWidgets.git/commitdiff
added missing wxSTD for cout/endl
authorGilles Depeyrot <gilles_depeyrot@mac.com>
Sat, 14 Sep 2002 09:35:50 +0000 (09:35 +0000)
committerGilles Depeyrot <gilles_depeyrot@mac.com>
Sat, 14 Sep 2002 09:35:50 +0000 (09:35 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@17174 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

utils/HelpGen/src/docripper.cpp

index 3b50e47cbcab2d4d705e7e237d1fb79512744317..e7552491ad482ebda1e00c00d156af8053dcfcd6 100644 (file)
@@ -369,13 +369,13 @@ void RipperDocGen::LinkSuperClassRefs()
 
 void RipperDocGen::ProcessFile( const char* sourceFile )
 {
 
 void RipperDocGen::ProcessFile( const char* sourceFile )
 {
-       cout << "Processing file " << sourceFile << "..." << endl;
+       wxSTD cout << "Processing file " << sourceFile << "..." << wxSTD endl;
 
        spFile* pCtx = mpParser->ParseFile( sourceFile );
 
        if ( pCtx == NULL )
        {
 
        spFile* pCtx = mpParser->ParseFile( sourceFile );
 
        if ( pCtx == NULL )
        {
-               cout << "Cannot open file " << sourceFile << ", skipped..." << endl;
+               wxSTD cout << "Cannot open file " << sourceFile << ", skipped..." << wxSTD endl;
 
                return;
        }
 
                return;
        }