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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user