~wxCaret();
%extend {
- %pythonAppend Destroy "args[0].thisown = 0"
+ %pythonPrepend Destroy "args[0].this.own(False)"
DocStr(Destroy,
"Deletes the C++ object this Python object is a proxy for.", "");
void Destroy() {
class wxBusyInfo : public wxObject {
public:
- wxBusyInfo(const wxString& message);
+ wxBusyInfo(const wxString& message, wxWindow *parent = NULL);
~wxBusyInfo();
%pythoncode { def Destroy(self): pass }
public:
// ctor starts the stop watch
wxStopWatch();
-
+ ~wxStopWatch();
+
// start the stop watch at the moment t0
void Start(long t0 = 0);