#include <errors.h>
Public Member Functions | |
virtual void | OnStackFrame (const wxStackFrame &frame) |
Dumps the stack Scope: Public. |
Definition at line 599 of file errors.h.
|
Dumps the stack Scope: Public.
Definition at line 1817 of file errors.cpp. 01818 { 01819 #ifdef _DEBUG 01820 wxString l; 01821 l.Printf(_T("%d %s:%d %s"), frame.GetLevel(), frame.GetFileName().c_str(), frame.GetLine(), frame.GetName().c_str()); 01822 // l = wxString(frame.GetName().c_str(); 01823 wxLogDebug(l); 01824 #endif 01825 }
|