]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/log.h
fix for wxUniversal on win32 platforms
[wxWidgets.git] / include / wx / log.h
index 2de7fe1e4b38a8f32af2edd87d253af50791bd0c..f4b5163c2bd897661a4f93e65f7df4b2ff603453 100644 (file)
@@ -40,7 +40,9 @@ typedef unsigned long wxLogLevel;
 
 #if wxUSE_LOG
 
+#ifndef __WXWINCE__
 #include <time.h>   // for time_t
+#endif
 
 #include "wx/dynarray.h"
 
@@ -177,6 +179,8 @@ public:
     static void RemoveTraceMask(const wxString& str);
         // remove all string trace masks
     static void ClearTraceMasks();
+       // get string trace masks
+    static const wxArrayString &GetTraceMasks() { return ms_aTraceMasks; }
 
         // sets the timestamp string: this is used as strftime() format string
         // for the log targets which add time stamps to the messages - set it
@@ -596,3 +600,4 @@ void WXDLLEXPORT wxSafeShowMessage(const wxString& title, const wxString& text);
 
 #endif  // _WX_LOG_H_
 
+// vi:sts=4:sw=4:et