projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
[ 1585253 ] Various important bugfixes to wxFileName::Normalize
[wxWidgets.git]
/
include
/
wx
/
msw
/
pen.h
diff --git
a/include/wx/msw/pen.h
b/include/wx/msw/pen.h
index 7e682576d4249d9e8c83b41420d3030941cf1b24..57d5f1c0d6dff148acc84fb2de0791897d2a91db 100644
(file)
--- a/
include/wx/msw/pen.h
+++ b/
include/wx/msw/pen.h
@@
-89,7
+89,8
@@
public:
bool operator!=(const wxPen& pen) const { return !(*this == pen); }
bool operator!=(const wxPen& pen) const { return !(*this == pen); }
- virtual bool Ok() const { return (m_refData != NULL); }
+ virtual bool Ok() const { return IsOk(); }
+ virtual bool IsOk() const { return (m_refData != NULL); }
// Override in order to recreate the pen
void SetColour(const wxColour& col);
// Override in order to recreate the pen
void SetColour(const wxColour& col);