]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/longlong.cpp
corrected MacSetSelection which was incorrectly deselecting also the previously selec...
[wxWidgets.git] / src / common / longlong.cpp
index 44415d8dab39dd5924e6fafdef110a406cb5988c..d0cda3912dd7029039d1fdd41e62ec18a6aa00c2 100644 (file)
 #if wxUSE_LONGLONG
 #include "wx/longlong.h"
 
+#if defined(__MWERKS__) && defined(__WXMSW__)
+#include <string.h>     // for memset()
+#else
 #include <memory.h>     // for memset()
+#endif
+
 #include <math.h>       // for fabs()
 
 // ============================================================================
@@ -609,11 +614,10 @@ void *wxLongLongWx::asArray(void) const
 
 wxString
 #if wxUSE_LONGLONG_NATIVE
-wxLongLongNative
+wxLongLongNative::ToString() const
 #else
-wxLognLongWx
+wxLongLongWx::ToString() const
 #endif
-::ToString() const
 {
     // TODO: this is awfully inefficient, anything better?
     wxString result;