]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/buffer.h
reset the associated view frame pointer when the frame is deleted directly instead...
[wxWidgets.git] / interface / wx / buffer.h
index 504df2aeb68905656d83a59fc7cb0a30a5f10e76..d8766639b0b3e9affdf68bd698563f06764dfce3 100644 (file)
 
     @todo provide better docs for this class
 
+    @tparam T
+        The type of the characters stored in this class.
+
     @nolibrary
-    @category{misc}
+    @category{data}
 */
 template <typename T>
 class wxCharTypeBuffer
@@ -45,7 +48,7 @@ public:
     @todo provide better docs for this class
 
     @nolibrary
-    @category{misc}
+    @category{data}
 */
 class wxCharBuffer : public wxCharTypeBuffer<char>
 {
@@ -63,7 +66,7 @@ public:
     This class is available only when <tt>wxUSE_WCHAR_T==1</tt>
 
     @nolibrary
-    @category{misc}
+    @category{data}
 */
 class wxWCharBuffer : public wxCharTypeBuffer<wchar_t>
 {
@@ -76,8 +79,6 @@ public:
     wxWCharBuffer(const wxCStrData& cstr);
 };
 
-
-
 /**
     @class wxMemoryBuffer