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