]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/html/htmltag.h
Header file for MSW GSocket
[wxWidgets.git] / include / wx / html / htmltag.h
index 750a2e84771f405d7f13ee4647d543242b5e6546..7b44f46e43fbea519c1ef72a5a08cb2640a1dc3a 100644 (file)
@@ -97,12 +97,14 @@ class WXDLLEXPORT wxHtmlTag : public wxObject
                 //           <P IMG SRC="WhaT.jpg"> GetParam("SRC") returns (WhaT.jpg)
                 //                           (or ("WhaT.jpg") if with_commas == TRUE)
 
-        int ScanParam(const wxString& par, char *format, ...) const;
+        int ScanParam(const wxString& par, char *format, void *param) const;
                 // Scans param like scanf() functions family do.
                 // Example : ScanParam("COLOR", "\"#%X\"", &clr);
                 // This is always with with_commas=FALSE
                // Returns number of scanned values
                // (like sscanf() does)
+               // NOTE: unlike scanf family, this function only accepts
+               //       *one* parameter !
 
         inline const wxString& GetAllParams() const {return m_Params;};
                 // Returns string containing all params.