Well, can't hurt to do some char -> wxChar, though wxHTML may not work

in Unicode mode quite yet...


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4249 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Ove Kaaven
1999-10-29 02:14:51 +00:00
parent e08ee38353
commit 0e36104428
2 changed files with 5 additions and 5 deletions

View File

@@ -69,8 +69,8 @@ typedef struct
{ {
short int m_Level; short int m_Level;
int m_ID; int m_ID;
char* m_Name; wxChar* m_Name;
char* m_Page; wxChar* m_Page;
wxHtmlBookRecord *m_Book; wxHtmlBookRecord *m_Book;
} }
wxHtmlContentsItem; wxHtmlContentsItem;
@@ -83,7 +83,7 @@ wxHtmlContentsItem;
class WXDLLEXPORT wxSearchEngine : public wxObject class WXDLLEXPORT wxSearchEngine : public wxObject
{ {
private: private:
char *m_Keyword; wxChar *m_Keyword;
public: public:
wxSearchEngine() : wxObject() {m_Keyword = NULL; } wxSearchEngine() : wxObject() {m_Keyword = NULL; }

View File

@@ -36,7 +36,7 @@ typedef struct {
// end2 is '>' or both are // end2 is '>' or both are
// -1 if there is no ending tag for this one... // -1 if there is no ending tag for this one...
// or -2 if this is ending tag </...> // or -2 if this is ending tag </...>
char *Name; wxChar *Name;
// name of this tag // name of this tag
} sCacheItem; } sCacheItem;
@@ -93,7 +93,7 @@ class WXDLLEXPORT wxHtmlTag : public wxObject
// <P IMG SRC="WhaT.jpg"> GetParam("SRC") returns (WhaT.jpg) // <P IMG SRC="WhaT.jpg"> GetParam("SRC") returns (WhaT.jpg)
// (or ("WhaT.jpg") if with_commas == TRUE) // (or ("WhaT.jpg") if with_commas == TRUE)
int ScanParam(const wxString& par, char *format, void *param) const; int ScanParam(const wxString& par, wxChar *format, void *param) const;
// Scans param like scanf() functions family do. // Scans param like scanf() functions family do.
// Example : ScanParam("COLOR", "\"#%X\"", &clr); // Example : ScanParam("COLOR", "\"#%X\"", &clr);
// This is always with with_commas=FALSE // This is always with with_commas=FALSE