AGW Logo

svn SVN Revision 68342 For auibook

This file contains the SVN revision history for auibook, at revision 68342.

Available information include commit date, the name of the committer, the file size, the SVN log messages and a diff from the previous version (if available).


file_info File Information

  • Commit Date: 17-Apr-2009 14:49:01 UTC
  • Committer: AG
  • File Size: 191865 byte(s)

svn_log Log Messages

The following log message was entered by the committer:

  • ToasterBox: fixed ticket #13258. It appears wx.FRAME_TOOL_WINDOW doesn’t work as expected on Windows 7
  • AuiNotebook: fixed tickets #12800 and #12919

svn_diff Diff To Previous Version (68021)

Version SVN diff:

--- wxPython/3rdParty/AGW/agw/aui/auibook.py        2011/06/22 19:56:23     68021
+++ wxPython/3rdParty/AGW/agw/aui/auibook.py        2011/07/23 19:06:24     68342
@@ -3618,12 +3618,15 @@
"""

if page >= self._tabs.GetPageCount():
-            return False
+            return wx.NOT_FOUND

bitmap = self.GetPageBitmap(page)
+        bmpData1 = bitmap.ConvertToImage().GetData()
+
for indx in xrange(self._imageList.GetImageCount()):
imgListBmp = self._imageList.GetBitmap(indx)
-            if imgListBmp == bitmap:
+            bmpData2 = imgListBmp.ConvertToImage().GetData()
+            if bmpData1 == bmpData2:
return indx

return wx.NOT_FOUND
Tree

Table Of Contents

Previous topic

SVN Revision 68021 For auibook

Next topic

SVN Revision 68742 For auibook