]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/richtext/richtextxml.h
Minor doc improvements
[wxWidgets.git] / interface / richtext / richtextxml.h
index e429030d7fbe1693401976db8633cbd474949df2..f469e5401ab0cbc17c3a1ed2f9ed3b2e66f608d5 100644 (file)
@@ -1,6 +1,6 @@
 /////////////////////////////////////////////////////////////////////////////
 // Name:        richtext/richtextxml.h
-// Purpose:     documentation for wxRichTextXMLHandler class
+// Purpose:     interface of wxRichTextXMLHandler
 // Author:      wxWidgets team
 // RCS-ID:      $Id$
 // Licence:     wxWindows license
     functions directly.
 
     @library{wxrichtext}
-    @category{FIXME}
+    @category{richtext}
 */
 class wxRichTextXMLHandler : public wxRichTextFileHandler
 {
 public:
     /**
-        , @b const wxString&@e ext = wxT("xml"), @b int@e type = wxRICHTEXT_TYPE_XML)
+        ,  wxString&@e ext = wxT("xml"), @b int@e type = wxRICHTEXT_TYPE_XML)
         Constructor.
     */
-    wxRichTextXMLHandler();
+    wxRichTextXMLHandler() const;
 
     /**
         Returns @true.
     */
-    bool CanLoad();
+    bool CanLoad() const;
 
     /**
         Returns @true.
     */
-    bool CanSave();
+    bool CanSave() const;
 
     /**
         Creates XML code for a given character or paragraph style.
@@ -99,3 +99,4 @@ public:
     */
     bool ImportXML(wxRichTextBuffer* buffer, wxXmlNode* node);
 };
+