]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/tooltip.h
several g++ 4 warning fixes
[wxWidgets.git] / interface / tooltip.h
index 6abb42f45838fae2f65fe12b0f55b9d71e87c332..8c39060810c8a6a32f318a34bed62c0e66c1bddd 100644 (file)
@@ -1,6 +1,6 @@
 /////////////////////////////////////////////////////////////////////////////
 // Name:        tooltip.h
-// Purpose:     documentation for wxToolTip class
+// Purpose:     interface of wxToolTip
 // Author:      wxWidgets team
 // RCS-ID:      $Id$
 // Licence:     wxWindows license
@@ -32,7 +32,6 @@ public:
 
     /**
         Enable or disable tooltips globally.
-        
         May not be supported on all platforms (eg. wxCocoa).
     */
     static void Enable(bool flag);
@@ -40,12 +39,12 @@ public:
     /**
         Get the tooltip text.
     */
-    wxString GetTip();
+    wxString GetTip() const;
 
     /**
         Get the associated window.
     */
-    wxWindow* GetWindow();
+    wxWindow* GetWindow() const;
 
     /**
         Set the delay after which the tooltip disappears or how long a
@@ -56,7 +55,6 @@ public:
 
     /**
         Set the delay after which the tooltip appears.
-        
         May not be supported on all platforms (eg. wxCocoa).
     */
     static void SetDelay(long msecs);
@@ -72,3 +70,4 @@ public:
     */
     void SetTip(const wxString& tip);
 };
+