]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/html/helpdata.h
Allow displaying Japanese character with wxMotif/ANSI under a
[wxWidgets.git] / include / wx / html / helpdata.h
index ff2feb6ab542b9451957ae15da05a01aab839d93..e689747ce44b5241ccaa113617662a79bb80907c 100644 (file)
@@ -84,7 +84,7 @@ struct WXDLLIMPEXP_HTML wxHtmlHelpDataItem
 {
     wxHtmlHelpDataItem() : level(0), parent(NULL), id(wxID_ANY), book(NULL) {}
 
-    short int level;
+    int level;
     wxHtmlHelpDataItem *parent;
     int id;
     wxString name;
@@ -110,7 +110,7 @@ struct wxHtmlContentsItem
     wxHtmlContentsItem& operator=(const wxHtmlContentsItem& d);
     ~wxHtmlContentsItem();
 
-    short int m_Level;
+    int m_Level;
     int m_ID;
     wxChar *m_Name;
     wxChar *m_Page;
@@ -153,8 +153,8 @@ private:
 };
 
 
-// State information of a search action. I'd have prefered to make this a nested
-// class inside wxHtmlHelpData, but that's against coding standards :-(
+// State information of a search action. I'd have preferred to make this a
+// nested class inside wxHtmlHelpData, but that's against coding standards :-(
 // Never construct this class yourself, obtain a copy from
 // wxHtmlHelpData::PrepareKeywordSearch(const wxString& key)
 class WXDLLIMPEXP_HTML wxHtmlSearchStatus