]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/pen.h
Changed floats to doubles in wxexpr.h; added a flag in accel.h (wxACCEL_NONE for
[wxWidgets.git] / include / wx / msw / pen.h
index 5bf73b0205ae2284c94337fbbb65a95de3e05023..7635328dbdbe4b409652a147643b6339d04e4ac4 100644 (file)
@@ -27,6 +27,7 @@ class WXDLLEXPORT wxPenRefData: public wxGDIRefData
     friend class WXDLLEXPORT wxPen;
 public:
     wxPenRefData(void);
+    wxPenRefData(const wxPenRefData& data);
     ~wxPenRefData(void);
 
 protected:
@@ -53,7 +54,7 @@ public:
   wxPen(const wxString& col, int width, int style);
   wxPen(const wxBitmap& stipple, int width);
   inline wxPen(const wxPen& pen) { Ref(pen); }
-  inline wxPen(const wxPen* pen) { /* UnRef(); */ if (pen) Ref(*pen); }
+  inline wxPen(const wxPen* pen) { if (pen) Ref(*pen); }
   ~wxPen(void);
 
   inline wxPen& operator = (const wxPen& pen) { if (*this == pen) return (*this); Ref(pen); return *this; }
@@ -90,6 +91,7 @@ public:
   bool FreeResource(bool force = FALSE);
   WXHANDLE GetResourceHandle(void) ;
   bool IsFree(void);
+  void Unshare();
 };
 
 int wx2msPenStyle(int wx_style);