]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk1/pen.h
make wxTmemchr() return (and take) char* instead of void* in ANSI build too
[wxWidgets.git] / include / wx / gtk1 / pen.h
index dac2e0ff795623744cc370f9a9a6b5b26b68e458..f196a8165da002f776c13fbec3ac23ac3e489883 100644 (file)
@@ -20,7 +20,7 @@
 // classes
 //-----------------------------------------------------------------------------
 
-class WXDLLIMPEXP_CORE wxPen;
+class WXDLLIMPEXP_FWD_CORE wxPen;
 
 #if defined(__WXGTK127__)
 typedef    gint8 wxGTKDash;
@@ -40,7 +40,8 @@ public:
     wxPen( const wxColour &colour, int width = 1, int style = wxSOLID );
     virtual ~wxPen();
 
-    bool Ok() const { return m_refData != NULL; }
+    bool Ok() const { return IsOk(); }
+    bool IsOk() const { return m_refData != NULL; }
 
     bool operator == ( const wxPen& pen ) const;
     bool operator != (const wxPen& pen) const { return !(*this == pen); }