Use wx-prefixed macros throughout the repository.

Change {DECLARE,IMPLEMENT}_*CLASS and {DECLARE,BEGIN,END}_EVENT_TABLE
occurrences to use the wx-prefixed version of the macros.
This commit is contained in:
Dimitri Schoolwerth
2015-04-23 15:49:01 +04:00
parent 2d3f617b34
commit 8f8d58d193
1697 changed files with 3543 additions and 3543 deletions

View File

@@ -38,7 +38,7 @@ enum wx28HtmlURLType
// 2 tags.
class wx28HtmlParser : public wxObject
{
DECLARE_ABSTRACT_CLASS(wx28HtmlParser)
wxDECLARE_ABSTRACT_CLASS(wx28HtmlParser);
public:
wx28HtmlParser();
@@ -171,7 +171,7 @@ protected:
wxList m_HandlersList;
wxHashTable m_HandlersHash;
DECLARE_NO_COPY_CLASS(wx28HtmlParser)
wxDECLARE_NO_COPY_CLASS(wx28HtmlParser);
// class for opening files (file system)
wxFileSystem *m_FS;
@@ -196,7 +196,7 @@ protected:
// 3. Handler restores original state of the parser
class wx28HtmlTagHandler : public wxObject
{
DECLARE_ABSTRACT_CLASS(wx28HtmlTagHandler)
wxDECLARE_ABSTRACT_CLASS(wx28HtmlTagHandler);
public:
wx28HtmlTagHandler() : wxObject () { m_Parser = NULL; }
@@ -234,7 +234,7 @@ protected:
wx28HtmlParser *m_Parser;
DECLARE_NO_COPY_CLASS(wx28HtmlTagHandler)
wxDECLARE_NO_COPY_CLASS(wx28HtmlTagHandler);
};
@@ -242,7 +242,7 @@ protected:
// both named entities and &#xxxx entries where xxxx is Unicode code.
class wx28HtmlEntitiesParser : public wxObject
{
DECLARE_DYNAMIC_CLASS(wx28HtmlEntitiesParser)
wxDECLARE_DYNAMIC_CLASS(wx28HtmlEntitiesParser);
public:
wx28HtmlEntitiesParser();
@@ -272,7 +272,7 @@ protected:
wxFontEncoding m_encoding;
#endif
DECLARE_NO_COPY_CLASS(wx28HtmlEntitiesParser)
wxDECLARE_NO_COPY_CLASS(wx28HtmlEntitiesParser);
};