]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/tipwin.h
Minor clarification
[wxWidgets.git] / interface / tipwin.h
index b6b6d29b61828bdbf5eb61ee6659c22892983357..ef4a08e2a4fcbedbd384a0fd7182efc4fbb2ee7d 100644 (file)
@@ -1,6 +1,6 @@
 /////////////////////////////////////////////////////////////////////////////
 // Name:        tipwin.h
-// Purpose:     documentation for wxTipWindow class
+// Purpose:     interface of wxTipWindow
 // Author:      wxWidgets team
 // RCS-ID:      $Id$
 // Licence:     wxWindows license
@@ -26,7 +26,7 @@ class wxTipWindow : public wxWindow
 public:
     /**
         Constructor. The tip is shown immediately after the window is constructed.
-        
+
         @param parent
             The parent window, must be non-@NULL
         @param text
@@ -45,7 +45,7 @@ public:
     */
     wxTipWindow(wxWindow* parent, const wxString& text,
                 wxCoord maxLength = 100,
-                wxTipWindow** windowPtr,
+                wxTipWindow** windowPtr = NULL,
                 wxRect* rectBounds = NULL);
 
     /**
@@ -55,7 +55,7 @@ public:
         Additionally, if a non-empty @a rectBound is provided, the tip window will
         also automatically close if the mouse leaves this area. This is useful to
         dismiss the tip mouse when the mouse leaves the object it is associated with.
-        
+
         @param rectBound
             The bounding rectangle for the mouse in the screen coordinates
     */
@@ -69,3 +69,4 @@ public:
     */
     void SetTipWindowPtr(wxTipWindow** windowPtr);
 };
+