%newgroup;
+MustHaveApp(wxTipWindow);
+
class wxTipWindow :
#ifndef __WXMAC__
public wxPyPopupTransientWindow
#endif
{
public:
- %addtofunc wxTipWindow "self._setOORInfo(self)"
+ %pythonAppend wxTipWindow "self._setOORInfo(self)"
%extend {
wxTipWindow(wxWindow *parent,
- const wxString* text,
+ const wxString& text,
wxCoord maxLength = 100,
wxRect* rectBound = NULL) {
- wxString tmp = *text;
- return new wxTipWindow(parent, tmp, maxLength, NULL, rectBound);
+ return new wxTipWindow(parent, text, maxLength, NULL, rectBound);
}
}