From: Julian Smart Date: Tue, 12 Mar 2002 12:45:52 +0000 (+0000) Subject: Added constructor for wxColourRefData, else CloneRefData did a binary X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/d5cf34f4dc5388b6791cf6abee76e63470fa8ede Added constructor for wxColourRefData, else CloneRefData did a binary copy which caused an assert in AllocExclusive (Add to Custom Colours in Colour Dialog) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14564 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/x11/colour.cpp b/src/x11/colour.cpp index dfe438e1c4..cf8431a8cc 100644 --- a/src/x11/colour.cpp +++ b/src/x11/colour.cpp @@ -35,6 +35,13 @@ public: m_colormap = (WXColormap *) NULL; m_hasPixel = FALSE; } + wxColourRefData(const wxColourRefData& data): + wxObjectRefData() + { + m_color = data.m_color; + m_colormap = data.m_colormap; + m_hasPixel = data.m_hasPixel; + } ~wxColourRefData() {