]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/gdicmn.cpp
dynamic event types actually work with these changes, also corrected more
[wxWidgets.git] / src / common / gdicmn.cpp
index 6e48b25fd3f6c93049d1c0afc6ddfc104e0d6137..a9481d6f49b51fd8269cecfcc98153f916ae6353 100644 (file)
@@ -228,7 +228,9 @@ void wxColourDatabase::Initialize ()
         {wxT("MEDIUM GREY"), 100, 100, 100},
     };
 
-    for ( size_t n = 0; n < WXSIZEOF(wxColourTable); n++ )
+    size_t      n;
+
+    for ( n = 0; n < WXSIZEOF(wxColourTable); n++ )
     {
         const wxColourDesc& cc = wxColourTable[n];
         Append(cc.name, new wxColour(cc.r,cc.g,cc.b));
@@ -379,7 +381,7 @@ void wxInitializeStockObjects ()
 #else
 #endif
 */
-#if defined(__WXPM__)
+#if defined(__WXPM__) || defined(__WXMAC__)
   static const int sizeFont = 12;
   wxNORMAL_FONT = new wxFont (sizeFont, wxMODERN, wxNORMAL, wxNORMAL);
 #else