]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/carbon/dccg.cpp
corrected the just-added operator=(RGBColor) return value
[wxWidgets.git] / src / mac / carbon / dccg.cpp
index eed1bb4f8be96792a9422b36380042fc2cc540aa..4cd27e7247bc10502346be1ba9314ae988e5db25 100755 (executable)
@@ -1593,7 +1593,7 @@ bool wxDC::DoGetPixel( wxCoord x, wxCoord y, wxColour *col ) const
         YLOG2DEVMAC(y) + m_macLocalOriginInPort.y - m_macLocalOrigin.y, &colour );
 #endif
     // convert from Mac colour to wx
-    col->Set( colour.red >> 8, colour.green >> 8, colour.blue >> 8 );
+    *col = colour;
 
     return true ;
 }