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

@@ -130,7 +130,7 @@ wxImageRefData::~wxImageRefData()
#define M_IMGDATA static_cast<wxImageRefData*>(m_refData)
IMPLEMENT_DYNAMIC_CLASS(wxImage, wxObject)
wxIMPLEMENT_DYNAMIC_CLASS(wxImage, wxObject);
bool wxImage::Create(const char* const* xpmData)
{
@@ -3109,7 +3109,7 @@ void wxImage::RotateHue(double angle)
// wxImageHandler
//-----------------------------------------------------------------------------
IMPLEMENT_ABSTRACT_CLASS(wxImageHandler,wxObject)
wxIMPLEMENT_ABSTRACT_CLASS(wxImageHandler, wxObject);
#if wxUSE_STREAMS
int wxImageHandler::GetImageCount( wxInputStream& stream )
@@ -3650,14 +3650,14 @@ wxImage wxImage::Rotate(double angle,
class wxImageModule: public wxModule
{
DECLARE_DYNAMIC_CLASS(wxImageModule)
wxDECLARE_DYNAMIC_CLASS(wxImageModule);
public:
wxImageModule() {}
bool OnInit() wxOVERRIDE { wxImage::InitStandardHandlers(); return true; }
void OnExit() wxOVERRIDE { wxImage::CleanUpHandlers(); }
};
IMPLEMENT_DYNAMIC_CLASS(wxImageModule, wxModule)
wxIMPLEMENT_DYNAMIC_CLASS(wxImageModule, wxModule);
#endif // wxUSE_IMAGE