From: Vadim Zeitlin Date: Tue, 15 Sep 1998 22:08:17 +0000 (+0000) Subject: wxPenRefData copy ctor was somehow not declared in the class definition X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/335a8b43e952afe037ce77bc4d52e5a688086853?ds=inline wxPenRefData copy ctor was somehow not declared in the class definition git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@738 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/gtk/pen.cpp b/src/gtk/pen.cpp index 0a785a8dee..a0fd6d563b 100644 --- a/src/gtk/pen.cpp +++ b/src/gtk/pen.cpp @@ -24,6 +24,7 @@ class wxPenRefData: public wxObjectRefData public: wxPenRefData(void); + wxPenRefData(const wxPenRefData& data); int m_width; int m_style; diff --git a/src/gtk1/pen.cpp b/src/gtk1/pen.cpp index 0a785a8dee..a0fd6d563b 100644 --- a/src/gtk1/pen.cpp +++ b/src/gtk1/pen.cpp @@ -24,6 +24,7 @@ class wxPenRefData: public wxObjectRefData public: wxPenRefData(void); + wxPenRefData(const wxPenRefData& data); int m_width; int m_style;