]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/colour.cpp
fix warning about empty if statement in HDCClipper ctor in release build
[wxWidgets.git] / src / gtk1 / colour.cpp
index d4ba21bc35ca4745b58241c0af7a0a849578e9e5..7adf4b1dc27064f8826c653971b2e42438aa0456 100644 (file)
 
 #include "wx/colour.h"
 
-#include "wx/gdicmn.h"
+#ifndef WX_PRECOMP
+    #include "wx/gdicmn.h"
+#endif
+
 #include "wx/gtk1/private.h"
 
 #include <gdk/gdk.h>
@@ -44,7 +47,7 @@ public:
         m_hasPixel = data.m_hasPixel;
     }
 
-    ~wxColourRefData()
+    virtual ~wxColourRefData()
     {
         FreeColour();
     }
@@ -224,7 +227,7 @@ GdkColor *wxColour::GetColor() const
 bool wxColour::FromString(const wxChar *str)
 {
     GdkColor colGDK;
-    if ( gdk_color_parse( wxGTK_CONV_SYS( str ), &colGDK ) )
+    if ( gdk_color_parse( str, &colGDK ) )
     {
         UnRef();