]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/xlocale.cpp
Handle hot spots in wxImage::Rotate90().
[wxWidgets.git] / src / common / xlocale.cpp
index 24dca049ca66fa89fdc3ba7ce5de8549fb56b30e..b1c08bade9cb215dfa0c2a249f563af9e3203350 100644 (file)
@@ -77,7 +77,9 @@ wxXLocale& wxXLocale::GetCLocale()
 {
     if ( !gs_cLocale )
     {
-        gs_cLocale = new wxXLocale(static_cast<wxXLocaleCTag *>(NULL));
+        // NOTE: bcc551 has trouble doing static_cast with incomplete
+        //       type definition. reinterpret_cast used as workaround
+        gs_cLocale = new wxXLocale( reinterpret_cast<wxXLocaleCTag *>(NULL) );
     }
 
     return *gs_cLocale;