]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_cshelp.i
Acquire the GIL in GetSelections
[wxWidgets.git] / wxPython / src / _cshelp.i
index ca04f0cae8b772c804bd17619983ba625b068cab..fbc13ac227c6744b22eb18c7c29e337b140b9118 100644 (file)
@@ -208,11 +208,18 @@ application using wx.HelpProvider.Set().", "");
 class wxHelpProvider 
 {
 public:
+    
+    ~wxHelpProvider();
+    
+    
+    %disownarg( wxHelpProvider *helpProvider );
+    %newobject Set;
     DocDeclStr(
         static wxHelpProvider *, Set(wxHelpProvider *helpProvider),
         "Sset the current, application-wide help provider. Returns the previous
 one.  Unlike some other classes, the help provider is not created on
 demand. This must be explicitly done by the application.", "");
+    %cleardisown( wxHelpProvider *helpProvider );
     
     DocDeclStr(
         static wxHelpProvider *, Get(),
@@ -250,6 +257,7 @@ table of help strings will fill up and when window pointers are
 reused, the wrong help string will be found.", "");
     
     
+    %pythonAppend Destroy "args[0].thisown = 0"
     %extend { void Destroy() { delete self; } }
 };