]> git.saurik.com Git - wxWidgets.git/blobdiff - src/osx/utils_osx.cpp
Store HTML "id" parameter value in wxHtmlCell.
[wxWidgets.git] / src / osx / utils_osx.cpp
index da98e5371a0edab41fabc195e239947025e86877..bfcf65f57c514bdb25efd2992f0700eaa5851c49 100644 (file)
@@ -4,7 +4,6 @@
 // Author:      Stefan Csomor
 // Modified by:
 // Created:     1998-01-01
-// RCS-ID:      $Id$
 // Copyright:   (c) Stefan Csomor
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
@@ -248,7 +247,7 @@ CGColorRef wxMacCreateCGColorFromHITheme( ThemeBrush brush )
 {
     const int maxcachedbrush = 58+5; // negative indices are for metabrushes, cache down to -5)
     int brushindex = brush+5;
-    if ( brushindex < 0 || brush > brushindex )
+    if ( brushindex < 0 || brushindex > maxcachedbrush )
     {
         CGColorRef color ;
         HIThemeBrushCreateCGColor( brush, &color );