Corrected port name used in headers.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42211 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Neis
2006-10-21 17:19:11 +00:00
parent 375829bb01
commit d9c9196e34
2 changed files with 3 additions and 3 deletions

View File

@@ -31,7 +31,7 @@ class WXDLLIMPEXP_CORE wxGDIObject: public wxObject
public:
bool IsNull() const { return m_refData == NULL; }
#if defined(__WXMSW__) || defined(__WXOS2__) || defined(__WXPALMOS__)
#if defined(__WXMSW__) || defined(__WXPM__) || defined(__WXPALMOS__)
// Creates the resource
virtual bool RealizeResource() { return false; }
@@ -42,7 +42,7 @@ public:
// Returns handle.
virtual WXHANDLE GetResourceHandle() const { return 0; }
#endif // defined(__WXMSW__) || defined(__WXOS2__)
#endif // defined(__WXMSW__) || defined(__WXPM__)
DECLARE_DYNAMIC_CLASS(wxGDIObject)
};