X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/89e1de6441845de971433531a7286d5bea06c3f5..66f75561893ea7b4bf429d1882d9cc0407ba932d:/src/common/iconbndl.cpp diff --git a/src/common/iconbndl.cpp b/src/common/iconbndl.cpp index e87312bc5e..b59a47864e 100644 --- a/src/common/iconbndl.cpp +++ b/src/common/iconbndl.cpp @@ -42,7 +42,17 @@ IMPLEMENT_DYNAMIC_CLASS(wxIconBundle, wxGDIObject) class WXDLLEXPORT wxIconBundleRefData : public wxGDIRefData { public: - // default and copy ctors and assignment operators are ok + wxIconBundleRefData() { } + + // We need the copy ctor for CloneGDIRefData() but notice that we use the + // base class default ctor in it and not the copy one which it doesn't have. + wxIconBundleRefData(const wxIconBundleRefData& other) + : wxGDIRefData(), + m_icons(other.m_icons) + { + } + + // default assignment operator and dtor are ok virtual bool IsOk() const { return !m_icons.empty(); }