]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/log.h
use WPARAM (which is 64 bit under Win64) for timer ids instead of long (which is...
[wxWidgets.git] / include / wx / log.h
index 39a539f329ce6adbad7ab7402e8d8aa9fcf8d22a..a787afd3dddb3b5bf803da3e697ec5b3a48dc791 100644 (file)
@@ -66,9 +66,9 @@ typedef unsigned long wxLogLevel;
 
 // wxUSE_LOG_TRACE enables the trace messages, they are disabled by default
 #ifndef wxUSE_LOG_TRACE
-    #if wxDEBUG_LEVEL >= 2
+    #if wxDEBUG_LEVEL
         #define wxUSE_LOG_TRACE 1
-    #else // wxDEBUG_LEVEL < 2
+    #else // !wxDEBUG_LEVEL
         #define wxUSE_LOG_TRACE 0
     #endif
 #endif // wxUSE_LOG_TRACE
@@ -230,7 +230,7 @@ public:
     // return the current loglevel limit
     static wxLogLevel GetLogLevel() { return ms_logLevel; }
 
-    // get the current timestamp format string (may be NULL)
+    // get the current timestamp format string (maybe empty)
     static const wxString& GetTimestamp() { return ms_timestamp; }
 
 
@@ -347,7 +347,7 @@ private:
 
     static size_t      ms_suspendCount; // if positive, logs are not flushed
 
-    // format string for strftime(), if NULL, time stamping log messages is
+    // format string for strftime(), if empty, time stamping log messages is
     // disabled
     static wxString    ms_timestamp;