]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/cocoa/pen.h
GCC doesn't like inline wxDEPRECATED methods.
[wxWidgets.git] / include / wx / cocoa / pen.h
index 9f46d56becab1e87ac02ab739aad725b1d1d4084..5049cda0353b61ca017f43759e5dc3da8108cdfa 100644 (file)
@@ -39,7 +39,8 @@ public:
     inline bool operator != (const wxPen& pen) const
     {   return m_refData != pen.m_refData; }
 
-    virtual bool Ok() const { return (m_refData != NULL) ; }
+    virtual bool Ok() const { return IsOk(); }
+    virtual bool IsOk() const { return (m_refData != NULL) ; }
 
     void SetColour(const wxColour& col) ;
     void SetColour(unsigned char r, unsigned char g, unsigned char b)  ;
@@ -60,7 +61,7 @@ public:
     wxBitmap *GetStipple() const;
 
     WX_NSColor GetNSColor();
-    int GetCocoaLineDash(const float **pattern);
+    int GetCocoaLineDash(const CGFloat **pattern);
 };
 
 #endif // __WX_COCOA_PEN_H__