revert return type changes for gdi object pointers

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38918 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Paul Cornett
2006-04-26 02:24:42 +00:00
parent c1aa5517ac
commit 1c9d49c661
3 changed files with 10 additions and 10 deletions

View File

@@ -188,10 +188,10 @@ class WXDLLIMPEXP_OGL wxDivisionShape: public wxCompositeShape
inline void SetHandleSide(int side) { m_handleSide = side; }
inline int GetHandleSide() const { return m_handleSide; }
inline void SetLeftSidePen(wxPen *pen) { m_leftSidePen = pen; }
inline const wxPen *GetLeftSidePen() const { return m_leftSidePen; }
inline void SetTopSidePen(wxPen *pen) { m_topSidePen = pen; }
inline const wxPen *GetTopSidePen() const { return m_topSidePen; }
inline void SetLeftSidePen(const wxPen *pen) { m_leftSidePen = pen; }
inline wxPen *GetLeftSidePen() const { return wx_const_cast(wxPen*, m_leftSidePen); }
inline void SetTopSidePen(const wxPen *pen) { m_topSidePen = pen; }
inline wxPen *GetTopSidePen() const { return wx_const_cast(wxPen*, m_topSidePen); }
void SetLeftSideColour(const wxString& colour);
void SetTopSideColour(const wxString& colour);