]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_log.i
Updated overview
[wxWidgets.git] / wxPython / src / _log.i
index 57ccf8c5b0d3aed67a471110411c3a97cc1a9e08..4a3b7e26b8670ee2090c23231c610a2ace92c001 100644 (file)
@@ -61,7 +61,7 @@ public:
     static bool IsEnabled();
 
     // change the flag state, return the previous one
-    static bool EnableLogging(bool doIt = TRUE);
+    static bool EnableLogging(bool doIt = True);
 
     // static sink function
     static void OnLog(wxLogLevel level, const wxChar *szString, time_t t);    
@@ -94,7 +94,7 @@ public:
 
     // verbose mode is activated by standard command-line '-verbose'
     // option
-    static void SetVerbose(bool bVerbose = TRUE);
+    static void SetVerbose(bool bVerbose = True);
 
     // Set log level.  Log messages with level > logLevel will not be logged.
     static void SetLogLevel(wxLogLevel logLevel);
@@ -181,10 +181,10 @@ class wxLogWindow : public wxLog
 public:
     wxLogWindow(wxFrame *pParent,         // the parent frame (can be NULL)
             const wxString& szTitle,      // the title of the frame
-            bool bShow = TRUE,            // show window immediately?
-            bool bPassToOld = TRUE);      // pass log messages to the old target?
+            bool bShow = True,            // show window immediately?
+            bool bPassToOld = True);      // pass log messages to the old target?
 
-    void Show(bool bShow = TRUE);
+    void Show(bool bShow = True);
     wxFrame *GetFrame() const;
     wxLog *GetOldLog() const;
     bool IsPassingMessages() const;
@@ -218,8 +218,9 @@ void wxLogStatus(const wxString& msg);
 %name(LogStatusFrame)void wxLogStatus(wxFrame *pFrame, const wxString& msg);
 void wxLogSysError(const wxString& msg);
 
-void wxLogTrace(const wxString& msg);
-%name(LogTraceMask)void wxLogTrace(const wxString& mask, const wxString& msg);
+%nokwargs wxLogTrace;
+void wxLogTrace(unsigned long mask, const wxString& msg);
+void wxLogTrace(const wxString& mask, const wxString& msg);
 
 void wxLogGeneric(unsigned long level, const wxString& msg);