From 6ec59a2bf91002b18e5d2e7f7d77ea9ffeb8e43b Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Mon, 17 Jul 2006 21:34:32 +0000 Subject: [PATCH] Wrap new AddPane method as AddPaneAtPos git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40172 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/src/aui.i | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wxPython/src/aui.i b/wxPython/src/aui.i index 460622c94b..e5047351e1 100755 --- a/wxPython/src/aui.i +++ b/wxPython/src/aui.i @@ -153,8 +153,11 @@ The following example shows a simple implementation that utilizes %rename(_AddPane1) wxFrameManager::AddPane(wxWindow* window, const wxPaneInfo& pane_info); %rename(_AddPane2) wxFrameManager::AddPane(wxWindow* window, int direction = wxLEFT, - const wxString& caption = wxEmptyString); + const wxString& caption = wxEmptyString); +%rename(AddPaneAtPos) wxFrameManager::AddPane(wxWindow* window, + const wxPaneInfo& pane_info, + const wxPoint& drop_pos); // A typemap for the return value of wxFrameManager::GetAllPanes %typemap(out) wxPaneInfoArray& { -- 2.45.2