]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/clntdata.h
Add test for absence of events from wxSpinCtrlDouble ctor.
[wxWidgets.git] / interface / wx / clntdata.h
index 561d71ae20575649aef4041bc540751a5966b77a..b0df901a9c3867c23d7560bbd937a108ffacbe31 100644 (file)
@@ -2,15 +2,14 @@
 // Name:        clntdata.h
 // Purpose:     interface of wxClientData[Container] and wxStringClientData
 // Author:      wxWidgets team
-// RCS-ID:      $Id$
-// Licence:     wxWindows license
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 /**
     @class wxClientDataContainer
 
-    This class is a mixin that provides storage and management of "client
-    data." This data can either be of type void - in which case the data
+    This class is a mixin that provides storage and management of "client data".
+    This data can either be of type void - in which case the data
     @e container does not take care of freeing the data again or it is of
     type wxClientData or its derivatives. In that case the container will free
     the memory itself later. Note that you @e must not assign both void data
@@ -35,7 +34,7 @@ public:
     /**
         Destructor.
     */
-    ~wxClientDataContainer();
+    virtual ~wxClientDataContainer();
 
     /**
         Get the untyped client data.
@@ -99,7 +98,7 @@ public:
     /**
         Virtual destructor.
     */
-    ~wxClientData();
+    virtual ~wxClientData();
 };
 
 
@@ -128,7 +127,7 @@ public:
     /**
         Get string client data.
     */
-    const wxString GetData() const;
+    const wxString& GetData() const;
 
     /**
         Set string client data.