From 335a8b43e952afe037ce77bc4d52e5a688086853 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 15 Sep 1998 22:08:17 +0000 Subject: [PATCH] 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 --- src/gtk/pen.cpp | 1 + src/gtk1/pen.cpp | 1 + 2 files changed, 2 insertions(+) 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; -- 2.45.2