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

@@ -58,7 +58,7 @@ public:
}
private:
DECLARE_NO_COPY_CLASS(IPCTestConnection)
wxDECLARE_NO_COPY_CLASS(IPCTestConnection);
};
// ----------------------------------------------------------------------------
@@ -83,7 +83,7 @@ protected:
return NULL;
}
DECLARE_NO_COPY_CLASS(EventThread)
wxDECLARE_NO_COPY_CLASS(EventThread);
};
// ----------------------------------------------------------------------------
@@ -135,7 +135,7 @@ private:
EventThread *m_thread;
IPCTestConnection *m_conn;
DECLARE_NO_COPY_CLASS(IPCTestServer)
wxDECLARE_NO_COPY_CLASS(IPCTestServer);
};
static IPCTestServer *gs_server = NULL;
@@ -184,7 +184,7 @@ public:
private:
wxConnectionBase *m_conn;
DECLARE_NO_COPY_CLASS(IPCTestClient)
wxDECLARE_NO_COPY_CLASS(IPCTestClient);
};
static IPCTestClient *gs_client = NULL;
@@ -209,7 +209,7 @@ private:
void Execute();
void Disconnect();
DECLARE_NO_COPY_CLASS(IPCTestCase)
wxDECLARE_NO_COPY_CLASS(IPCTestCase);
};
CPPUNIT_TEST_SUITE_REGISTRATION( IPCTestCase );