X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/5c33522fca7cddc441a316f5b9fb50d7685435ba..dd44c130144ad153bf67121a94b23a615db409f5:/src/common/ipcbase.cpp?ds=sidebyside diff --git a/src/common/ipcbase.cpp b/src/common/ipcbase.cpp index 64c6c1f760..13c3f2e55c 100644 --- a/src/common/ipcbase.cpp +++ b/src/common/ipcbase.cpp @@ -4,7 +4,6 @@ // Author: Julian Smart // Modified by: // Created: 04/01/98 -// RCS-ID: $Id$ // Copyright: (c) Julian Smart // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -21,9 +20,9 @@ #include "wx/ipcbase.h" -IMPLEMENT_CLASS(wxServerBase, wxObject) -IMPLEMENT_CLASS(wxClientBase, wxObject) -IMPLEMENT_CLASS(wxConnectionBase, wxObject) +wxIMPLEMENT_ABSTRACT_CLASS(wxServerBase, wxObject) +wxIMPLEMENT_ABSTRACT_CLASS(wxClientBase, wxObject) +wxIMPLEMENT_ABSTRACT_CLASS(wxConnectionBase, wxObject) wxConnectionBase::wxConnectionBase(void *buffer, size_t bytes) : m_buffer((char *)buffer), @@ -55,7 +54,7 @@ wxConnectionBase::wxConnectionBase(const wxConnectionBase& copy) { // copy constructor would require ref-counted pointer to buffer - wxFAIL_MSG( _T("Copy constructor of wxConnectionBase not implemented") ); + wxFAIL_MSG( wxT("Copy constructor of wxConnectionBase not implemented") ); }