]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/tipdlg.h
Move code removing "-psn_xxx" command line arguments to common code.
[wxWidgets.git] / interface / wx / tipdlg.h
index f5c2d4fdc52bb821406458ed600db968c42fd32e..c9614a5d78b9a863594e68b24e2ad083c41ed970 100644 (file)
@@ -2,8 +2,7 @@
 // Name:        tipdlg.h
 // Purpose:     interface of wxTipProvider
 // Author:      wxWidgets team
-// RCS-ID:      $Id$
-// Licence:     wxWindows license
+// 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
@@ -48,7 +49,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 +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);
 };
 
 
@@ -69,7 +70,7 @@ public:
 // Global functions/macros
 // ============================================================================
 
-/** @ingroup group_funcmacro_dialog */
+/** @addtogroup group_funcmacro_dialog */
 //@{
 
 /**