//           <P IMG SRC="WhaT.jpg"> GetParam("SRC") returns (WhaT.jpg)
                 //                           (or ("WhaT.jpg") if with_commas == TRUE)
 
-        void ScanParam(const wxString& par, char *format, ...) const;
+        int ScanParam(const wxString& par, char *format, ...) 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)
 
         inline const wxString& GetAllParams() const {return m_Params;};
                 // Returns string containing all params.
 
+++ /dev/null
-
-#define wxHTML_VERSION_MAJOR 0
-#define wxHTML_VERSION_MINOR 2
-#define wxHTML_VERSION_REL   3
-
-#define wxHTML_VERSION (wxHTML_VERSION_MAJOR * 1000 + wxHTML_VERSION_MINOR * 100 + wxHTML_VERSION_REL)
-
 
 #endif
 
 
-#include <wx/html/version.h>
 #include <wx/html/htmldefs.h>
 #include <wx/html/htmltag.h>
 #include <wx/html/htmlcell.h>