]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/colourcmn.cpp
No changes, just get rid of some wxT()s in wxString unit test.
[wxWidgets.git] / src / common / colourcmn.cpp
index 013b17cee3150d38101b654763dc08bdd17b8229..70e4a1d9caeb53103d03062a05822ab92b547333 100644 (file)
@@ -273,6 +273,16 @@ void wxColourBase::MakeDisabled(unsigned char* r, unsigned char* g, unsigned cha
     *b = AlphaBlend(*b, brightness, 0.4);
 }
 
+wxColour& wxColourBase::MakeDisabled(unsigned char brightness)
+{
+    unsigned char r = Red(),
+                  g = Green(),
+                  b = Blue();
+    MakeDisabled(&r, &g, &b, brightness);
+    Set(r, g, b, Alpha());
+    return static_cast<wxColour&>(*this);
+}
+
 // AlphaBlend is used by ChangeLightness and MakeDisabled
 
 // static