]> git.saurik.com Git - wxWidgets.git/commitdiff
Wrong class used in _setCallbackInfo
authorRobin Dunn <robin@alldunn.com>
Sun, 29 May 2005 00:37:25 +0000 (00:37 +0000)
committerRobin Dunn <robin@alldunn.com>
Sun, 29 May 2005 00:37:25 +0000 (00:37 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34391 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/docs/CHANGES.txt
wxPython/src/_pywindows.i

index fae3a47b99e938187c6bbeaef80e916305be4450..9e85831c5b7855543fca3401572c15b9b09c06f1 100644 (file)
@@ -141,6 +141,8 @@ shrink.
 wxMSW: When converting a wx.Icon to a bitmap check if the icon has an
 alpha channel and set the bitmap to use it.
 
+Fixed the wrong class name used in wx.PyScrolledWindow's call to
+_setCallbackInfo.
 
 
 
index fb6b59057e6e6d40e17f258dc75a3de64bf770cf..69b423e84ffa622ac875b28c2c3258841c56095c 100644 (file)
@@ -444,7 +444,7 @@ MustHaveApp(wxPyScrolledWindow);
 class wxPyScrolledWindow : public wxScrolledWindow
 {
 public:
-    %pythonAppend wxPyScrolledWindow         "self._setOORInfo(self); self._setCallbackInfo(self, PyPanel)"
+    %pythonAppend wxPyScrolledWindow         "self._setOORInfo(self); self._setCallbackInfo(self, PyScrolledWindow)"
     %pythonAppend wxPyScrolledWindow()       ""
 
     wxPyScrolledWindow(wxWindow* parent, const wxWindowID id=-1,