]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/memory.cpp
Removed USING_CONFIGURE define. As VZ pointed out, checking HAVE_CONFIG_H
[wxWidgets.git] / src / common / memory.cpp
index 1826fb17c06c8fb4ddacb4efae65e7e980ff5792..4b8af7b8764d0d7991c82e380ee09c853eb31d28 100644 (file)
@@ -664,7 +664,7 @@ bool wxDebugContext::Dump(void)
 //  if (!HasStream())
 //    return FALSE;
 
-  if (TRUE)
+//  if (TRUE)
   {
     wxChar* appName = _T("application");
     wxString appNameStr("");
@@ -721,7 +721,7 @@ bool wxDebugContext::PrintStatistics(bool detailed)
 //  if (!HasStream())
 //    return FALSE;
 
-  if (TRUE)
+//  if (TRUE)
   {
     wxChar* appName = _T("application");
     wxString appNameStr(_T(""));
@@ -820,7 +820,7 @@ bool wxDebugContext::PrintClasses(void)
 //  if (!HasStream())
 //    return FALSE;
 
-  if (TRUE)
+//  if (TRUE)
   {
     wxChar* appName = _T("application");
     wxString appNameStr(_T(""));
@@ -1146,7 +1146,11 @@ void wxTrace(const wxChar *fmt ...)
   }
   else
 #ifdef __WXMSW__
+#ifdef __WIN32__
     OutputDebugString((LPCTSTR)buffer) ;
+#else
+    OutputDebugString((const char*) buffer) ;
+#endif
 #else
     fprintf(stderr, buffer);
 #endif
@@ -1178,7 +1182,11 @@ void wxTraceLevel(int level, const wxChar *fmt ...)
   }
   else
 #ifdef __WXMSW__
+#ifdef __WIN32__
     OutputDebugString((LPCTSTR)buffer) ;
+#else
+    OutputDebugString((const char*) buffer) ;
+#endif
 #else
     fprintf(stderr, buffer);
 #endif