changed return type of RGBColor to const Reference (avoiding compiler warnings)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13098 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor 2001-12-19 21:26:25 +00:00
parent 4268f79856
commit 642163b5a0

View File

@ -76,7 +76,7 @@ public:
void InitFromName(const wxString& col);
const WXCOLORREF GetPixel() const { return m_pixel; };
const WXCOLORREF& GetPixel() const { return m_pixel; };
private:
bool m_isInit;