AGW Logo

svn SVN Revision 69294 For dockart

This file contains the SVN revision history for dockart, at revision 69294.

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: 31-Mar-2009 16:34:20 UTC
  • Committer: AG
  • File Size: 45090 byte(s)

svn_log Log Messages

The following log message was entered by the committer:

ModernDockArt for AUI: fixed an unreferenced link to winxptheme.


svn_diff Diff To Previous Version (66778)

Version SVN diff:

--- wxPython/3rdParty/AGW/agw/aui/dockart.py        2011/01/26 20:56:31     66778
+++ wxPython/3rdParty/AGW/agw/aui/dockart.py        2011/10/02 19:32:45     69294
@@ -915,10 +915,11 @@

# Get the size of a small close button (themed)
hwnd = self.win.GetHandle()
+        self.usingTheme = False

-        self.hTheme1 = winxptheme.OpenThemeData(hwnd, "Window")
-
-        self.usingTheme = True
+        if _ctypes:
+            self.hTheme1 = winxptheme.OpenThemeData(hwnd, "Window")
+            self.usingTheme = True

if not self.hTheme1:
self.usingTheme = False
Tree

Table Of Contents

Previous topic

ModernDockArt

Next topic

SVN Revision 70555 For dockart