]> git.saurik.com Git - wxWidgets.git/commitdiff
fixed bug in .hhp's FILES section creation introduced in previous revision
authorVáclav Slavík <vslavik@fastmail.fm>
Thu, 12 Feb 2004 20:13:28 +0000 (20:13 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Thu, 12 Feb 2004 20:13:28 +0000 (20:13 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25779 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

utils/tex2rtf/src/htmlutil.cpp

index 3a7a4fb1e4aa5d4bbf02f8f5ec8a7d2f0f2ced8a..a04e88baa77534ad039f3173ff82dc56fa0ee079 100644 (file)
@@ -202,9 +202,10 @@ void ReopenFile(FILE **fd, wxChar **fileName, const wxChar *label)
   }
   else
   {
+    if (fileId == 1)
+      gs_filenames.Add(wxEmptyString);
     wxSprintf(buf, _T("%s_%s.html"), FileRoot, label);
-    gs_filenames.SetCount(fileId + 1);
-    gs_filenames[fileId] = buf;
+    gs_filenames.Add(buf);
   }
   if (*fileName) delete[] *fileName;
   *fileName = copystring(wxFileNameFromPath(buf));