git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13580
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
#endif
#ifdef DBDEBUG_CONSOLE
#endif
#ifdef DBDEBUG_CONSOLE
+#if wxUSE_IOSTREAMH
+ #include <iostream.h>
+#else
+ #include <iostream>
+#endif
#include "wx/ioswrap.h"
#endif
#include "wx/ioswrap.h"
#endif
+#if wxUSE_IOSTREAMH
+ #include <iostream.h>
+#else
+ #include <iostream>
+#endif
if ( lst[i]->StartsParagraph() )
{
str += mTags[TAG_PARAGRAPH].start;
if ( lst[i]->StartsParagraph() )
{
str += mTags[TAG_PARAGRAPH].start;
}
str += lst[i]->mText;
}
// remove new lines, and insert paragraph breaks
}
str += lst[i]->mText;
}
// remove new lines, and insert paragraph breaks
// if empty lines found
size_t len = str.length();
// if empty lines found
size_t len = str.length();
if ( str[n] == 10 ||
str[n] == 13 )
if ( str[n] == 10 ||
str[n] == 13 )
if ( ( str[n] == 13 && str[n+1] == 10 && // FIXME:: quick-hack
if ( ( str[n] == 13 && str[n+1] == 10 && // FIXME:: quick-hack
( str[n] == 10 && str[n+1] == 10 )
( str[n] == 10 && str[n+1] == 10 )
str.insert( n + 1, "<p>" ); // FIXME:: quick-hack
str.insert( n + 1, "<p>" ); // FIXME:: quick-hack
str += mTags[TAG_PARAGRAPH].end;
}
str += mTags[TAG_PARAGRAPH].end;
}
void RipperDocGen::VisitPreprocessorLine( spPreprocessorLine& pd )
{
if ( pd.mDefType != SP_PREP_DEF_REDEFINE_SYMBOL )
void RipperDocGen::VisitPreprocessorLine( spPreprocessorLine& pd )
{
if ( pd.mDefType != SP_PREP_DEF_REDEFINE_SYMBOL )
if ( CheckIfUncommented( pd, *mpMacroIdx ) )
return;
if ( CheckIfUncommented( pd, *mpMacroIdx ) )
return;
#include "wx/wx.h"
#include "wx/resource.h"
#include "wx/wx.h"
#include "wx/resource.h"
-#include "iostream.h"
-#include "fstream.h"
+#if wxUSE_IOSTREAMH
+#include <iostream.h>
+#include <fstream.h>
+#else
+#include <iostream>
+#include <fstream>
+#endif
#include "makeproj.h"
#include "projgenrc.h"
#include "makeproj.h"
#include "projgenrc.h"