]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/regex.h
Split wxDataViewVirtualModel fork wxDataViewIndexModel to make the code clearer and...
[wxWidgets.git] / interface / regex.h
index ed0eb41abce919e08d9dbb3d2fee3dfc5f4daf60..68db15b112d93501f8a5970812bd28c36801a131 100644 (file)
@@ -1,6 +1,6 @@
 /////////////////////////////////////////////////////////////////////////////
 // Name:        regex.h
-// Purpose:     documentation for wxRegEx class
+// Purpose:     interface of wxRegEx
 // Author:      wxWidgets team
 // RCS-ID:      $Id$
 // Licence:     wxWindows license
@@ -21,7 +21,7 @@
 
     Regular expressions, as defined by POSIX, come in two flavours: @e extended
     and @e basic.  The builtin library also adds a third flavour
-    of expression advanced, which is not available
+    of expression advanced(), which is not available
     when using the system library.
 
     Unicode is fully supported only when using the builtin library.
@@ -37,8 +37,7 @@
     @library{wxbase}
     @category{data}
 
-    @seealso
-    wxRegEx::ReplaceFirst
+    @see wxRegEx::ReplaceFirst
 */
 class wxRegEx
 {
@@ -130,7 +129,7 @@ public:
     /**
         Replace all occurrences: this is actually a synonym for
         Replace().
-        
+
         @see ReplaceFirst()
     */
     int ReplaceAll(wxString* text, const wxString& replacement) const;
@@ -140,3 +139,4 @@ public:
     */
     int ReplaceFirst(wxString* text, const wxString& replacement) const;
 };
+