]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/carbon/colour.cpp
Fix for mistake with const for non pointer/reference with corrections in documentation.
[wxWidgets.git] / src / mac / carbon / colour.cpp
index 1a065ff8b6911b4c23e4fada6083b840a80327c1..c0a79f8f77eb93ecb1cc30b6e4532935e5da5219 100644 (file)
@@ -6,19 +6,15 @@
 // Created:     1998-01-01
 // RCS-ID:      $Id$
 // Copyright:   (c) Stefan Csomor
-// Licence:       wxWidgets licence
+// Licence:       wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-#ifdef __GNUG__
-#pragma implementation "colour.h"
-#endif
+#include "wx/wxprec.h"
 
 #include "wx/gdicmn.h"
 #include "wx/colour.h"
 
-#if !USE_SHARED_LIBRARY
 IMPLEMENT_DYNAMIC_CLASS(wxColour, wxObject)
-#endif
 
 // Colour
 
@@ -54,16 +50,6 @@ wxColour::wxColour (const wxColour& col)
     memcpy( &m_pixel , &col.m_pixel , 6 ) ;
 }
 
-wxColour::wxColour (const wxColour* col)
-{
-    m_red = col->m_red;
-    m_green = col->m_green;
-    m_blue = col->m_blue;
-    m_isInit = col->m_isInit;
-
-    memcpy( &m_pixel , &col->m_pixel , 6 ) ;
-}
-
 wxColour& wxColour::operator =(const wxColour& col)
 {
     m_red = col.m_red;