removed html/version.h

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3536 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
1999-08-30 22:37:41 +00:00
parent aeb50f8660
commit 499f945e99
3 changed files with 3 additions and 9 deletions

View File

@@ -97,10 +97,12 @@ class WXDLLEXPORT wxHtmlTag : public wxObject
// <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.

View File

@@ -1,7 +0,0 @@
#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)