Applied patch 1037938 by Zbigniew Zagorski to fix Unicode build problems

in Tex2RTF HTML generation


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29565 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2004-09-30 18:41:55 +00:00
parent 571f6981e2
commit 7f9975410f
3 changed files with 5 additions and 5 deletions

View File

@@ -887,7 +887,7 @@ void HTMLOnMacro(int macroId, int no_args, bool start)
int ch = getc(fd);
while (ch != EOF)
{
putc(ch, Sections);
wxPutc(ch, Sections);
ch = getc(fd);
}
fclose(fd);
@@ -1662,7 +1662,7 @@ void HTMLOnMacro(int macroId, int no_args, bool start)
int ch = getc(fd);
while (ch != EOF)
{
putc(ch, Titlepage);
wxPutc(ch, Titlepage);
ch = getc(fd);
}
fclose(fd);
@@ -3075,7 +3075,7 @@ bool HTMLGo(void)
int ch = getc(fd);
while (ch != EOF)
{
putc(ch, tmpTitle);
wxPutc(ch, tmpTitle);
ch = getc(fd);
}
fclose(fd);