]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/docview.cpp
added custom icons
[wxWidgets.git] / src / common / docview.cpp
index c001cac43acaa48d45ad19da228cf64a9c536383..b0e10bdc68e5b9ea212860989066452f777a139a 100644 (file)
@@ -2085,7 +2085,7 @@ void wxFileHistory::Load(wxConfigBase& config)
     wxString buf;
     buf.Printf(wxT("file%d"), m_fileHistoryN+1);
     wxString historyFile;
-    while ((m_fileHistoryN <= m_fileMaxFiles) && config.Read(buf, &historyFile) && (historyFile != wxT("")))
+    while ((m_fileHistoryN < m_fileMaxFiles) && config.Read(buf, &historyFile) && (historyFile != wxT("")))
     {
         m_fileHistory[m_fileHistoryN] = copystring((const wxChar*) historyFile);
         m_fileHistoryN ++;