X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/526954c5968baa29218c994ec48e476ae2bd4b9f..9e9574fe45b176ee74bba8fad7574cf9906145d1:/interface/wx/tipdlg.h?ds=sidebyside diff --git a/interface/wx/tipdlg.h b/interface/wx/tipdlg.h index a7e0d49f7d..c9614a5d78 100644 --- a/interface/wx/tipdlg.h +++ b/interface/wx/tipdlg.h @@ -2,7 +2,6 @@ // Name: tipdlg.h // Purpose: interface of wxTipProvider // Author: wxWidgets team -// RCS-ID: $Id$ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -34,8 +33,10 @@ public: */ wxTipProvider(size_t currentTip); + virtual ~wxTipProvider(); + /** - Returns the index of the current tip (i.e. the one which would be returned by GetTip()). + Returns the index of the current tip (i.e.\ the one which would be returned by GetTip()). The program usually remembers the value returned by this function after calling wxShowTip(). Note that it is not the same as the value which was passed to @@ -60,7 +61,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); };