fix LoadPanel() docs (closes #10467)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58685 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Francesco Montorsi
2009-02-05 18:54:49 +00:00
parent c78d8a70f5
commit e64cadcb8b

View File

@@ -246,12 +246,12 @@ public:
//@}
/**
Loads a panel. @a panel points to parent window (if any).
Loads a panel. @a parent points to the parent window.
*/
wxPanel* LoadPanel(wxWindow* parent, const wxString& name);
/**
Loads a panel. @a panel points to parent window (if any).
Loads a panel. @a parent points to the parent window.
This form is used to finish creation of an already existing instance.
*/
bool LoadPanel(wxPanel* panel, wxWindow* parent, const wxString& name);