]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/html/htmltag.h
Make wxDataObjectComposite::GetObject() public.
[wxWidgets.git] / interface / wx / html / htmltag.h
index 903d23ff3a4321a63333bc7d35f92cbd32c7accf..3745c06d8be9bd6f264ca596613fd92ebef3ae63 100644 (file)
@@ -73,7 +73,7 @@ public:
 
     /**
         Returns tag's name. The name is always in uppercase and it doesn't contain
-        " or '/' characters. (So the name of \<FONT SIZE=+2\> tag is "FONT"
+        &quot; or '/' characters. (So the name of \<FONT SIZE=+2\> tag is "FONT"
         and name of \</table\> is "TABLE").
     */
     wxString GetName() const;
@@ -148,6 +148,7 @@ public:
     */
     bool HasParam(const wxString& par) const;
 
+    //@{
     /**
         This method scans the given parameter. Usage is exactly the same as sscanf's
         usage except that you don't pass a string but a parameter name as the first
@@ -161,6 +162,8 @@ public:
         @param value
             pointer to a variable to store the value in
     */
-    wxString ScanParam(const wxString& par, const wxChar* format, void* value) const;
+    int ScanParam(const wxString& par, const wchar_t* format, void* value) const;
+    int ScanParam(const wxString& par, const char* format, void* value) const;
+    //@}
 };