some fixes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41649 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn 2006-10-05 23:56:13 +00:00
parent 6f67d53729
commit 050441c841
2 changed files with 15 additions and 1 deletions

View File

@ -77,7 +77,7 @@ public:
return NULL;
}
wxGraphicsPath * CreatePath() {}
wxGraphicsPath * CreatePath() { return NULL; }
void PushState() {}
void PopState() {}
void Clip( const wxRegion & ) {}

View File

@ -248,6 +248,20 @@ The following example shows a simple implementation that utilizes
}
}
%extend wxDockInfo {
~wxDockInfo() {}
}
%extend wxDockUIPart {
wxDockUIPart() {}
~wxDockUIPart() {}
}
%extend wxPaneButton {
wxPaneButton() {}
~wxPaneButton() {}
}
//---------------------------------------------------------------------------
%{