added missing wxSTD for cout/endl

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@17174 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Gilles Depeyrot 2002-09-14 09:35:50 +00:00
parent b55a176b25
commit 29ee95e8bc

View File

@ -369,13 +369,13 @@ void RipperDocGen::LinkSuperClassRefs()
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 )
{
cout << "Cannot open file " << sourceFile << ", skipped..." << endl;
wxSTD cout << "Cannot open file " << sourceFile << ", skipped..." << wxSTD endl;
return;
}