]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/tracker.h
store selected indices as unsigned int, not size_t, in wxSelectionStore, we don't...
[wxWidgets.git] / interface / tracker.h
index 7c4e02f1c511a762bc5feff7dca5238a37e898a1..64484b10d139778964507566bd2d8b9d0141a18f 100644 (file)
@@ -1,6 +1,6 @@
 /////////////////////////////////////////////////////////////////////////////
 // Name:        tracker.h
-// Purpose:     documentation for wxTrackable class
+// Purpose:     interface of wxTrackable
 // Author:      wxWidgets team
 // RCS-ID:      $Id$
 // Licence:     wxWindows license
@@ -9,29 +9,30 @@
 /**
     @class wxTrackable
     @wxheader{tracker.h}
-    
+
     Add-on base class for a trackable object. This class maintains
     an internal linked list of classes of type wxTrackerNode and
     calls OnObjectDestroy() on them if this object is destroyed.
-    The most common usage is by using the wxWeakRefT
+    The most common usage is by using the wxWeakRefT()
     class template which automates this. This class has no public
     API. Its only use is by deriving another class from it to
     make it trackable.
-    
+
     @code
     class MyClass: public Foo, public wxTrackable
     {
        // whatever
     }
-    
+
     typedef wxWeakRefMyClass MyClassRef;
     @endcode
-    
+
     @library{wxbase}
     @category{FIXME}
 */
-class wxTrackable 
+class wxTrackable
 {
 public:
-    
+
 };
+