]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/ole/dataform.h
restored #ifndef wxUSE_UNICODE accidentaly removed by my previous commit
[wxWidgets.git] / include / wx / msw / ole / dataform.h
index f071c37461332af918be34621893140e424fb5fd..634ab463e0c35d611ad2c3504b2c1152ab41ccf8 100644 (file)
@@ -19,7 +19,7 @@
 class WXDLLEXPORT wxDataFormat
 {
 public:
-    // the clipboard formats under Win32 are WORDs
+    // the clipboard formats under Win32 are WORD's
     typedef unsigned short NativeFormat;
 
     wxDataFormat(NativeFormat format = wxDF_INVALID) { m_format = format; }
@@ -58,7 +58,7 @@ public:
     void SetId(const wxChar *format);
 
     // returns TRUE if the format is one of those defined in wxDataFormatId
-    bool IsStandard() const { return m_format > 0 && m_format < wxDF_MAX; }
+    bool IsStandard() const { return m_format > 0 && m_format < wxDF_PRIVATE; }
 
 private:
     NativeFormat m_format;