]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_cshelp.i
cleanup magic number usage and comments
[wxWidgets.git] / wxPython / src / _cshelp.i
index 31944bf0a52efddad1dd9f4f090277cdddc7220f..927fcea157ed7740bd23cabdf7d3dd9d22b0bfee 100644 (file)
@@ -138,7 +138,7 @@ MustHaveApp(wxContextHelp);
 class wxContextHelp : public wxObject {
 public:
     DocCtorStr(
-        wxContextHelp(wxWindow* window = NULL, bool doNow = True),
+        wxContextHelp(wxWindow* window = NULL, bool doNow = true),
         "Constructs a context help object, calling BeginContextHelp if doNow is
 true (the default).
 
@@ -208,11 +208,14 @@ application using wx.HelpProvider.Set().", "");
 class wxHelpProvider 
 {
 public:
+    %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 +253,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; } }
 };