X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/78e87bf7b8fb25529f77881834c75ae1614e6552..7344108e8a129a3f9b4df5ab0f98a1713db03b89:/interface/wx/tipdlg.h diff --git a/interface/wx/tipdlg.h b/interface/wx/tipdlg.h index f5c2d4fdc5..2b8cbf984a 100644 --- a/interface/wx/tipdlg.h +++ b/interface/wx/tipdlg.h @@ -3,7 +3,7 @@ // Purpose: interface of wxTipProvider // Author: wxWidgets team // RCS-ID: $Id$ -// Licence: wxWindows license +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// /** @@ -34,6 +34,8 @@ public: */ wxTipProvider(size_t currentTip); + virtual ~wxTipProvider(); + /** Returns the index of the current tip (i.e. the one which would be returned by GetTip()). @@ -48,7 +50,7 @@ public: Return the text of the current tip and pass to the next one. This function is pure virtual, it should be implemented in the derived classes. */ - wxString GetTip(); + virtual wxString GetTip() = 0; /** Returns a modified tip. @@ -60,7 +62,7 @@ public: modification to the string. If you return wxEmptyString, then this tip is skipped, and the next one is read. */ - virtual wxString PreProcessTip(const wxString& tip); + virtual wxString PreprocessTip(const wxString& tip); }; @@ -69,7 +71,7 @@ public: // Global functions/macros // ============================================================================ -/** @ingroup group_funcmacro_dialog */ +/** @addtogroup group_funcmacro_dialog */ //@{ /**