X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a7a014180017908d32f0af32ebfa140fdc82b390..feffc1b546b896b64b24def29d03e1d404f92a70:/wxPython/src/_log.i diff --git a/wxPython/src/_log.i b/wxPython/src/_log.i index 3d52bf3a7d..f02bf3c39c 100644 --- a/wxPython/src/_log.i +++ b/wxPython/src/_log.i @@ -106,6 +106,13 @@ public: // current is NULL? static void DontCreateOnDemand(); + // log the count of repeating messages instead of logging the messages + // multiple times + static void SetRepetitionCounting(bool bRepetCounting = true); + + // gets duplicate counting status + static bool GetRepetitionCounting(); + // trace mask (see wxTraceXXX constants for details) static void SetTraceMask(wxTraceMask ulMask); @@ -154,9 +161,6 @@ public: %pythonAppend Destroy "args[0].thisown = 0"; %extend { void Destroy() { delete self; } } - - void DoLog(wxLogLevel level, const wxChar *szString, long t); - void DoLogString(const wxChar *szString, long t); };