]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk1/colour.h
Removed 16-bit conditional compilation
[wxWidgets.git] / include / wx / gtk1 / colour.h
index f07bce2d9da1040f51538eb9a8bcae20a2b66428..de243d30a7df5ca2c9a27995c76314b8d3a7a2b8 100644 (file)
@@ -11,7 +11,7 @@
 #ifndef __GTKCOLOURH__
 #define __GTKCOLOURH__
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(__APPLE__)
 #pragma interface
 #endif
 
@@ -47,7 +47,7 @@ public:
 
     // Implicit conversion from the colour name
     wxColour( const wxString &colourName ) { InitFromName(colourName); }
-    wxColour( const char *colourName ) { InitFromName(colourName); }
+    wxColour( const char *colourName ) { InitFromName( wxString::FromAscii(colourName) ); }
 #if wxUSE_UNICODE
     wxColour( const wxChar *colourName ) { InitFromName( wxString(colourName) ); }
 #endif