X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/12f5e1e78fe906050ff2fee9529476db332633f0..704ceca8d2cd8da51a5cc22f8c51fd61c762dbf5:/interface/wx/stackwalk.h diff --git a/interface/wx/stackwalk.h b/interface/wx/stackwalk.h index b5caef88c7..44e6bd7c97 100644 --- a/interface/wx/stackwalk.h +++ b/interface/wx/stackwalk.h @@ -57,7 +57,7 @@ public: Destructor does nothing neither but should be virtual as this class is used as a base one. */ - ~wxStackWalker(); + virtual ~wxStackWalker(); /** This function must be overrided to process the given frame. @@ -71,7 +71,7 @@ public: notice that Walk() frame itself is not included if skip = 1). Up to @a maxDepth frames are walked from the innermost to the outermost one. */ - void Walk(size_t skip = 1, size_t maxDepth = 200); + virtual void Walk(size_t skip = 1, size_t maxDepth = 200); /** Enumerate stack frames from the location of uncaught exception. @@ -79,7 +79,7 @@ public: wxApp::OnFatalException. Up to @a maxDepth frames are walked from the innermost to the outermost one. */ - void WalkFromException(size_t maxDepth = 200); + virtual void WalkFromException(size_t maxDepth = 200); }; @@ -157,7 +157,7 @@ public: can't retrieve the parameters info even although the function does have parameters). */ - size_t GetParamCount() const; + virtual size_t GetParamCount() const; /** Return @true if we have the file name and line number for this frame.