]> git.saurik.com Git - wxWidgets.git/blobdiff - src/osx/core/colour.cpp
Add wxRTTI macros for the wxSimpleHtmlListBox class
[wxWidgets.git] / src / osx / core / colour.cpp
index 39a4c09661fa5db8808730f83dc8ad5772ebb19e..92bddd08be1bfd62a7ffe0d081115e526f5b5ec9 100644 (file)
@@ -19,8 +19,6 @@
 
 #include "wx/osx/private.h"
 
-IMPLEMENT_DYNAMIC_CLASS(wxColour, wxObject)
-
 #if wxOSX_USE_COCOA_OR_CARBON
 wxColour::wxColour(const RGBColor& col)
 {
@@ -111,7 +109,7 @@ void wxColour::InitCGColorRef( CGColorRef col )
 {
     m_cgColour.reset( col );
     size_t noComp = CGColorGetNumberOfComponents( col );
-    
+
     const CGFloat *components = NULL;
     if ( noComp >= 1 && noComp <= 4 )
     {
@@ -130,7 +128,7 @@ void wxColour::InitFromComponents(const CGFloat* components, size_t numComponent
         m_red = m_green = m_blue = 0;
         return;
     }
-    
+
     if ( numComponents >= 3 )
     {
         m_red = (int)(components[0]*255+0.5);