remove 'point' arg from kwargs if it was replaced

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26501 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2004-03-30 19:17:17 +00:00
parent 413844c2d4
commit 94eaeb1b02
3 changed files with 3 additions and 3 deletions

View File

@@ -106,7 +106,7 @@ RefDoc(wxSplitterWindow, "
class wxSplitterWindow: public wxWindow
{
public:
%pythonPrepend wxSplitterWindow "if kwargs.has_key('point'): kwargs['pos'] = kwargs['point']"
%pythonPrepend wxSplitterWindow "if kwargs.has_key('point'): kwargs['pos'] = kwargs['point'];del kwargs['point']"
%pythonPrepend wxSplitterWindow() ""
%pythonAppend wxSplitterWindow "self._setOORInfo(self)"
%pythonAppend wxSplitterWindow() ""