+ wxGDIImageRefData(const wxGDIImageRefData& data) : wxGDIRefData(data)
+ {
+ m_width = data.m_width;
+ m_height = data.m_height;
+ m_depth = data.m_depth;
+
+ // can't copy handles like this, derived class copy ctor must do it!
+ m_handle = NULL;
+ }
+