]> git.saurik.com Git - wxWidgets.git/commitdiff
Decref items added to lists
authorRobin Dunn <robin@alldunn.com>
Sat, 22 May 2004 02:57:09 +0000 (02:57 +0000)
committerRobin Dunn <robin@alldunn.com>
Sat, 22 May 2004 02:57:09 +0000 (02:57 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27386 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/src/_display.i
wxPython/src/_functions.i
wxPython/src/_pen.i
wxPython/src/_treectrl.i

index f0e9fbbb40d07c1d5f02b2e0b8de585aeab9ea71..db32d011a8456433925a0f31839f5f476bc7f4ca 100644 (file)
@@ -167,6 +167,7 @@ function is not supported at all on this platform.", "");
                 wxVideoMode* m = new wxVideoMode(arr.Item(i));
                 PyObject* pyObj = wxPyConstructObject(m, wxT("wxVideoMode"), true);
                 PyList_Append(pyList, pyObj);
+                Py_DECREF(pyObj);
             }
             wxPyEndBlockThreads(blocked);
             return pyList;
index 88a1d05b6bd87546069b0e1b78ed3815e137344a..4e7423d5060697ccf6aaa481a74fc08b32aef9a5 100644 (file)
@@ -210,10 +210,13 @@ wxWindow* wxGetTopLevelParent(wxWindow *win);
 
 
 
-// Get the state of a key (true if pressed, false if not)
-// This is generally most useful getting the state of
-// the modifier or toggle keys.
-bool wxGetKeyState(wxKeyCode key);
+DocDeclStr(
+    bool , wxGetKeyState(wxKeyCode key),
+    "Get the state of a key (true if pressed or toggled on, false if not.)
+This is generally most useful getting the state of the modifier or
+toggle keys.  On some platforms those may be the only keys that work.
+", "");
+
 
 
 //---------------------------------------------------------------------------
index fc37c53409cff8934b81c808b5d57553445a67d0..cf9d76b28c111c647fb7cf96398c08929d233abf 100644 (file)
@@ -56,8 +56,11 @@ public:
             int count = self->GetDashes(&dashes);
             bool blocked = wxPyBeginBlockThreads();
             PyObject* retval = PyList_New(0);
-            for (int x=0; x<count; x++)
-                PyList_Append(retval, PyInt_FromLong(dashes[x]));
+            for (int x=0; x<count; x++) {
+                PyObject* pyint = PyInt_FromLong(dashes[x]);
+                PyList_Append(retval, pyint);
+                Py_DECREF(pyint);
+            }
             wxPyEndBlockThreads(blocked);
             return retval;
         }
index 4341ad5cf7b6bf2ca356d9c7d8d26210a92c8554..4c9eff9222cd2f919f17b31390b1044db472dfb8 100644 (file)
@@ -510,6 +510,7 @@ public:
                 wxTreeItemId *tii = new wxTreeItemId(array.Item(x));
                 PyObject* item = wxPyConstructObject((void*)tii, wxT("wxTreeItemId"), True);
                 PyList_Append(rval, item);
+                Py_DECREF(item);
             }
             wxPyEndBlockThreads(blocked);
             return rval;