From: David Elliott Date: Thu, 3 Jul 2003 17:59:52 +0000 (+0000) Subject: Added GetNSColor() accessor X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/7796b3d660dd8b93c19e174009328b67ed9d8b18 Added GetNSColor() accessor git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21612 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/cocoa/colour.h b/include/wx/cocoa/colour.h index d0eb9d14f3..9756d6cca4 100644 --- a/include/wx/cocoa/colour.h +++ b/include/wx/cocoa/colour.h @@ -53,6 +53,7 @@ public: // ------------------------------------------------------------------------ // accessors bool Ok() const { return m_cocoaNSColor; } + inline WX_NSColor GetNSColor() { return m_cocoaNSColor; } unsigned char Red() const { return m_red; } unsigned char Green() const { return m_green; }