]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/log.h
compilation fix after last commit
[wxWidgets.git] / include / wx / log.h
index cfe6b679e42836b3bc24272defb3f151451b8b69..5a2c119abc7b41beaa96bc427d5b9c6de0d08d83 100644 (file)
@@ -243,6 +243,14 @@ public:
     // change it otherwise)
     static void TimeStamp(wxString *str);
 
+    // this method should only be called from derived classes DoLog()
+    // implementations and shouldn't be called directly, use logging functions
+    // instead
+    void Log(wxLogLevel level, const wxString& msg, time_t t)
+    {
+        DoLog(level, msg, t);
+    }
+
     // make dtor virtual for all derived classes
     virtual ~wxLog();
 
@@ -256,7 +264,7 @@ public:
 #endif
 
 protected:
-    // the logging functions that can be overriden
+    // the logging functions that can be overridden
 
     // default DoLog() prepends the time stamp and a prefix corresponding
     // to the message to szString and then passes it to DoLogString()