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

@@ -52,7 +52,7 @@ private:
int m_events;
DECLARE_NO_COPY_CLASS(TimerCounterHandler)
wxDECLARE_NO_COPY_CLASS(TimerCounterHandler);
};
// --------------------------------------------------------------------------
@@ -73,7 +73,7 @@ private:
void OneShot();
void Multiple();
DECLARE_NO_COPY_CLASS(TimerEventTestCase)
wxDECLARE_NO_COPY_CLASS(TimerEventTestCase);
};
// register in the unnamed registry so that these tests are run by default
@@ -98,7 +98,7 @@ void TimerEventTestCase::OneShot()
wxEventLoopBase& m_loop;
// don't use DECLARE_NO_COPY_CLASS() to avoid upsetting MSVC
// don't use wxDECLARE_NO_COPY_CLASS() to avoid upsetting MSVC
};
wxEventLoop loop;