From: Francesco Montorsi <f18m_cpp217828@yahoo.it>
Date: Fri, 28 Nov 2008 17:58:00 +0000 (+0000)
Subject: internal variables of wxFileHistory are protected, not public; in any case, do not... 
X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/1adc52fd9114b917fa55232ac94d57d851793643

internal variables of wxFileHistory are protected, not public; in any case, do not document them since they are all editable safely using the accessors

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57007 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
---

diff --git a/interface/wx/docview.h b/interface/wx/docview.h
index e884ee0ba5..87e22de5c9 100644
--- a/interface/wx/docview.h
+++ b/interface/wx/docview.h
@@ -1472,27 +1472,6 @@ public:
         called, as this is not done automatically.
     */
     virtual void UseMenu(wxMenu* menu);
-
-    /**
-        A character array of strings corresponding to the most recently opened
-        files.
-    */
-    char** m_fileHistory;
-
-    /**
-        The number of files stored in the history array.
-    */
-    size_t m_fileHistoryN;
-
-    /**
-        The maximum number of files to be stored and displayed on the menu.
-    */
-    size_t m_fileMaxFiles;
-
-    /**
-        The file menu used to display the file history list (if enabled).
-    */
-    wxMenu* m_fileMenu;
 };