]> git.saurik.com Git - wxWidgets.git/commitdiff
Well, can't hurt to do some char -> wxChar, though wxHTML may not work
authorOve Kaaven <ovek@arcticnet.no>
Fri, 29 Oct 1999 02:14:51 +0000 (02:14 +0000)
committerOve Kaaven <ovek@arcticnet.no>
Fri, 29 Oct 1999 02:14:51 +0000 (02:14 +0000)
in Unicode mode quite yet...

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4249 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/html/helpdata.h
include/wx/html/htmltag.h

index 02214510c9070858e4847361d987140e5e1639be..0d842ed2ecb4e16aad14b8ab8c50ddf7978a3719 100644 (file)
@@ -69,8 +69,8 @@ typedef struct
 {
     short int m_Level;
     int m_ID;
-    char* m_Name;
-    char* m_Page;
+    wxChar* m_Name;
+    wxChar* m_Page;
     wxHtmlBookRecord *m_Book;
 }
 wxHtmlContentsItem;
@@ -83,7 +83,7 @@ wxHtmlContentsItem;
 class WXDLLEXPORT wxSearchEngine : public wxObject
 {
     private:
-        char *m_Keyword;
+        wxChar *m_Keyword;
 
     public:
         wxSearchEngine() : wxObject() {m_Keyword = NULL; }
index b24bdc0ec599bfe2859e1791b5a91061ab096658..88aacdd4dd25c92158954afee37abe4046159f58 100644 (file)
@@ -36,7 +36,7 @@ typedef struct {
             // end2 is '>' or both are
             // -1 if there is no ending tag for this one...
             // or -2 if this is ending tag  </...>
-        char *Name;
+        wxChar *Name;
             // name of this tag
     } sCacheItem;
 
@@ -93,7 +93,7 @@ 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, void *param) const;
+        int ScanParam(const wxString& par, wxChar *format, void *param) const;
                 // Scans param like scanf() functions family do.
                 // Example : ScanParam("COLOR", "\"#%X\"", &clr);
                 // This is always with with_commas=FALSE