X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/04dbb6467be8f564f380bd9a1106fbdecbd26a98..5cbda74b6606482f5286a5599fc60f3f91995a52:/include/wx/html/m_templ.h diff --git a/include/wx/html/m_templ.h b/include/wx/html/m_templ.h index 9d9174772d..17ff701967 100644 --- a/include/wx/html/m_templ.h +++ b/include/wx/html/m_templ.h @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: m_templ.h +// Name: wx/html/m_templ.h // Purpose: Modules template file // Author: Vaclav Slavik // RCS-ID: $Id$ @@ -29,10 +29,10 @@ I STRONGLY recommend reading and understanding these macros!! #include "wx/html/winpars.h" #define TAG_HANDLER_BEGIN(name,tags) \ - class HTML_Handler_##name : public wxHtmlWinTagHandler \ + class wxHTML_Handler_##name : public wxHtmlWinTagHandler \ { \ public: \ - wxString GetSupportedTags() {return tags;} + wxString GetSupportedTags() {return wxT(tags);} @@ -41,7 +41,7 @@ I STRONGLY recommend reading and understanding these macros!! #define TAG_HANDLER_CONSTR(name) \ public: \ - HTML_Handler_##name () : wxHtmlWinTagHandler() + wxHTML_Handler_##name () : wxHtmlWinTagHandler() #define TAG_HANDLER_PROC(varib) \ @@ -57,9 +57,9 @@ I STRONGLY recommend reading and understanding these macros!! #define TAGS_MODULE_BEGIN(name) \ - class HTML_Module##name : public wxHtmlTagsModule \ + class wxHTML_Module##name : public wxHtmlTagsModule \ { \ - DECLARE_DYNAMIC_CLASS(HTML_Module##name ) \ + DECLARE_DYNAMIC_CLASS(wxHTML_Module##name ) \ public: \ void FillHandlersTable(wxHtmlWinParser *parser) \ { @@ -68,7 +68,7 @@ I STRONGLY recommend reading and understanding these macros!! #define TAGS_MODULE_ADD(handler) \ - parser->AddTagHandler(new HTML_Handler_##handler); + parser->AddTagHandler(new wxHTML_Handler_##handler); @@ -76,7 +76,7 @@ I STRONGLY recommend reading and understanding these macros!! #define TAGS_MODULE_END(name) \ } \ }; \ - IMPLEMENT_DYNAMIC_CLASS(HTML_Module##name , wxHtmlTagsModule) + IMPLEMENT_DYNAMIC_CLASS(wxHTML_Module##name , wxHtmlTagsModule)