From 7e9968f70242bde7240927593f8e9af0dd2a8d53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?W=C5=82odzimierz=20Skiba?= Date: Mon, 30 May 2005 16:11:12 +0000 Subject: [PATCH] For 'twice' usage do not warn about references which will be completed in second pass (and make logs shorter). git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34417 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- utils/tex2rtf/src/htmlutil.cpp | 25 ++++++++++++++++--------- 1 file changed, 16 insertions(+), 9 deletions(-) diff --git a/utils/tex2rtf/src/htmlutil.cpp b/utils/tex2rtf/src/htmlutil.cpp index ec8fdfb658..380c837ea2 100644 --- a/utils/tex2rtf/src/htmlutil.cpp +++ b/utils/tex2rtf/src/htmlutil.cpp @@ -39,6 +39,7 @@ static inline wxChar* copystring(const wxChar* s) extern wxHashTable TexReferences; +extern int passNumber; extern void DecToHex(int, wxChar *); void GenerateHTMLIndexFile(wxChar *fname); @@ -662,7 +663,7 @@ void OutputBodyStart(void) if (s) { TexOutput(_T(" BACKGROUND=\"")); - TexOutput(s); + TexOutput(s); TexOutput(_T("\"")); } } @@ -905,7 +906,7 @@ void HTMLOnMacro(int macroId, int no_args, bool start) if ( combineSubSections && !subsectionStarted ) { fflush(Sections); - + // Read old .con file in at this point wxChar buf[256]; wxStrcpy(buf, CurrentSectionFile); @@ -1323,7 +1324,7 @@ void HTMLOnMacro(int macroId, int no_args, bool start) TexOutput(_T("\n\n")); else { TexOutput(_T("\n
\n")); - // DHS + // DHS TwoColWidthA = -1; TwoColWidthB = -1; } @@ -2107,9 +2108,15 @@ bool HTMLOnArgument(int macroId, int arg_no, bool start) TraverseChildrenFromChunk(helpRefText); if (!ignoreBadRefs) TexOutput(_T(" (REF NOT FOUND)")); - wxString errBuf; - errBuf.Printf(_T("Warning: unresolved reference '%s'"), refName); - OnInform((wxChar *)errBuf.c_str()); + + // for launching twice do not warn in preparation pass + if ((passNumber == 1 && !runTwice) || + (passNumber == 2 && runTwice)) + { + wxString errBuf; + errBuf.Printf(_T("Warning: unresolved reference '%s'"), refName); + OnInform((wxChar *)errBuf.c_str()); + } } } else TexOutput(_T("??")); @@ -2181,7 +2188,7 @@ bool HTMLOnArgument(int macroId, int arg_no, bool start) TexOutput(_T("")); } else @@ -2190,7 +2197,7 @@ bool HTMLOnArgument(int macroId, int arg_no, bool start) TexOutput(_T("")); delete[] inlineFilename; } @@ -2335,7 +2342,7 @@ bool HTMLOnArgument(int macroId, int arg_no, bool start) wxSnprintf(buf, sizeof(buf), _T("\n\n"),TwoColWidthB); TexOutput(buf); } - else + else { TexOutput(_T("\n\n")); }