From 8cd6b6b9854de1d1ad757da2ac7f5572eb6395e9 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Fri, 18 Apr 2003 21:33:55 +0000 Subject: [PATCH] Fixed INOUT parameter. Removed wrappers for wxMenu::Attach/Detach since they are really only for internal use and I didn't need them afterall to work around a bug that I thought I was fighting with... git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@20275 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/src/html.i | 2 +- wxPython/src/windows.i | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/wxPython/src/html.i b/wxPython/src/html.i index 7d4f87d2c7..ee3608491d 100644 --- a/wxPython/src/html.i +++ b/wxPython/src/html.i @@ -390,7 +390,7 @@ public: void DrawInvisible(wxDC& dc, int x, int y); const wxHtmlCell* Find(int condition, const void* param); - bool AdjustPagebreak(int * pagebreak); + bool AdjustPagebreak(int* INOUT); void SetCanLiveOnPagebreak(bool can); }; diff --git a/wxPython/src/windows.i b/wxPython/src/windows.i index 95a509bb04..de99bdd720 100644 --- a/wxPython/src/windows.i +++ b/wxPython/src/windows.i @@ -754,8 +754,6 @@ public: long GetStyle(); bool IsAttached(); - void Attach(wxMenuBar *menubar); - void Detach(); void SetParent(wxMenu *parent); wxMenu *GetParent();