]> git.saurik.com Git - wxWidgets.git/blobdiff - src/osx/core/hid.cpp
fix wxGTK1 compilation after wxTextEntry DoGetValue() change
[wxWidgets.git] / src / osx / core / hid.cpp
index fb9a4d051d21b7b7cb95c5d71a1b0994f3dc07c2..06ba8a0f5f661b68e72839b69afda93e6dc95414 100644 (file)
@@ -1,5 +1,5 @@
 /////////////////////////////////////////////////////////////////////////////
-// Name:        src/mac/corefoundation/hid.cpp
+// Name:        src/osx/corefoundation/hid.cpp
 // Purpose:     DARWIN HID layer for WX Implementation
 // Author:      Ryan Norton
 // Modified by:
@@ -27,7 +27,7 @@
 //DARWIN _ONLY_
 #ifdef __DARWIN__
 
-#include "wx/mac/corefoundation/hid.h"
+#include "wx/osx/core/hid.h"
 
 #ifndef WX_PRECOMP
     #include "wx/dynarray.h"
@@ -37,7 +37,7 @@
     #include "wx/module.h"
 #endif
 
-#include "wx/mac/corefoundation/cfstring.h"
+#include "wx/osx/core/cfstring.h"
 
 // ============================================================================
 // implementation
@@ -376,7 +376,7 @@ bool wxHIDDevice::IsActive(int nIndex)
 // ----------------------------------------------------------------------------
 bool wxHIDDevice::HasElement(int nIndex)
 {
-    return m_pCookies[nIndex] != NULL;
+    return (void*) m_pCookies[nIndex] != NULL;
 }
 
 // ----------------------------------------------------------------------------