Some corrections

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6332 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2000-02-28 15:57:06 +00:00
parent dc6eda546b
commit 94799627ee
12 changed files with 57 additions and 72 deletions

View File

@@ -93,12 +93,12 @@ public:
* A version of wxTreeLayout with storage for nodes
*/
class WXDLLEXPORT wxLayoutTreeStored: public wxTreeLayout
class WXDLLEXPORT wxTreeLayoutStored: public wxTreeLayout
{
DECLARE_DYNAMIC_CLASS(wxLayoutTreeStored)
DECLARE_DYNAMIC_CLASS(wxTreeLayoutStored)
public:
wxLayoutTreeStored(int noNodes = 200);
~wxLayoutTreeStored(void);
wxTreeLayoutStored(int noNodes = 200);
~wxTreeLayoutStored(void);
void Initialize(int n);
wxString HitTest(wxMouseEvent& event, wxDC& dc);
@@ -131,7 +131,7 @@ private:
};
// For backward compatibility
#define wxStoredTree wxLayoutTreeStored
#define wxStoredTree wxTreeLayoutStored
#endif
// _WX_TREELAY_H_