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

@@ -49,7 +49,7 @@ const wxString& wxFSFile::GetMimeType() const
// wxFileSystemHandler
// ----------------------------------------------------------------------------
IMPLEMENT_ABSTRACT_CLASS(wxFileSystemHandler, wxObject)
wxIMPLEMENT_ABSTRACT_CLASS(wxFileSystemHandler, wxObject);
/* static */
@@ -293,8 +293,8 @@ wxString wxLocalFSHandler::FindNext()
// wxFileSystem
//-----------------------------------------------------------------------------
IMPLEMENT_DYNAMIC_CLASS(wxFileSystem, wxObject)
IMPLEMENT_ABSTRACT_CLASS(wxFSFile, wxObject)
wxIMPLEMENT_DYNAMIC_CLASS(wxFileSystem, wxObject);
wxIMPLEMENT_ABSTRACT_CLASS(wxFSFile, wxObject);
wxList wxFileSystem::m_Handlers;
@@ -726,7 +726,7 @@ wxString wxFileSystem::FileNameToURL(const wxFileName& filename)
class wxFileSystemModule : public wxModule
{
DECLARE_DYNAMIC_CLASS(wxFileSystemModule)
wxDECLARE_DYNAMIC_CLASS(wxFileSystemModule);
public:
wxFileSystemModule() :
@@ -753,7 +753,7 @@ class wxFileSystemModule : public wxModule
};
IMPLEMENT_DYNAMIC_CLASS(wxFileSystemModule, wxModule)
wxIMPLEMENT_DYNAMIC_CLASS(wxFileSystemModule, wxModule);
//// wxFSInputStream